image-segmentation-keras
image-segmentation-keras copied to clipboard
training/validaiton loss/accuracy
How can I have the loss and accuracy of the training and validation phase across all epochs? I want to plot them versus epochs. Thanks
I am trying to figure this out. Leaving a comment here, to increase my chances for success.
Found any solution?
Found it. Upon calling, model.fit you can store what the call return in a variable, and call .history on that object.
Alternatively, you may dump it's contents in a pickle file, and then load it back to get a dictionary containing validation/train - loss + accuracy. Further, you may create a tensorboard callback, and visualize it in real-time, using tensorboard.