Keras Callback to save all the values of each batch per epoch
I would like to gather all the values during training for each epoch. When using the fit
function of tensorflow I only receive the last value after run through all batches. One of my ideas would be to use GradientTape
for this but maybe there is a easier way to do so using a callback. Does anybody have an idea how to obtain the store the result for each batch?
Topic tensorflow python
Category Data Science