Hey I am new to Tensorflow. I used DNN to train the model and I would like to plot the loss curve. However, I do not want to use Tensorboard since I am really not familiar with that. I wonder whether it is possible to extract the loss info info in each step and plot it use other plotting package or scikit-learn?
Really appreciated!
Change your
sess.run(training_function, feed_dict)
statement so it includes your loss function as well. Then use something like Matplotlib to plot the data.