Same issue as #76 (comment)
The training stops at the end of the epoch. I have to close the window to start training on the next epoch, and keep repeating this.
tensorboard_callbacks = []
if plot:
tensorboard_callbacks = [PlotLossesKerasTF()]
model.compile(optimizer='adam', loss='categorical_crossentropy', metrics=['accuracy'])
model.fit(normalizedInput.values, expectedOutput.values, validation_data=(normalizedValidationInput.values, expectedValidationOutput.values), epochs=100, batch_size=8, callbacks=tensorboard_callbacks)
Running as script on Windows
Python 3.9.13
tensorflow 2.13.1
livelossplot 0.5.5