Closed tarrade closed 4 years ago
display plot as a function of nb epoch (this is wrong, we have 2 epochs here!)
this display only the first value (acc, loss) -> wrong Epoch 1/10 2/2 [==============================] - 70s 35s/step - loss: 0.6915 - accuracy: 0.5469
and as nb of steps (as for tf.estimator)
just need to use the right parameters in TensorBoard:
tf.keras.callbacks.TensorBoard(log_dir=log_dir, histogram_freq=1, embeddings_freq=1, write_graph=True, update_freq='batch')
display plot as a function of nb epoch (this is wrong, we have 2 epochs here!)
this display only the first value (acc, loss) -> wrong Epoch 1/10 2/2 [==============================] - 70s 35s/step - loss: 0.6915 - accuracy: 0.5469
and as nb of steps (as for tf.estimator)