Skip to content
Snippets Groups Projects
Commit 41bdb6d1 authored by Dennis Noll's avatar Dennis Noll
Browse files

[keras] plot only on train end

parent 4658a837
No related branches found
No related tags found
No related merge requests found
......@@ -438,8 +438,8 @@ class PlotMulticlass(TFSummaryCallback):
def on_train_begin(self, logs=None):
self.make_input_plots()
def on_epoch_end(self, epoch, logs=None):
self.make_eval_plots(epoch)
def on_train_end(self, logs=None):
self.make_eval_plots()
def make_input_plots(self):
if self.plot_inputs:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment