Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5e3ccde commit 87c80f0Copy full SHA for 87c80f0
scripts/keras_cvp.py
@@ -57,7 +57,7 @@ def on_epoch_end(self, epoch, logs={}):
57
self.batch_times.sort()
58
avg_time_per_batch = sum(self.batch_times[0:-self.drop])/(len(self.batch_times)-self.drop)
59
samples_s_batch = self.batch_size / avg_time_per_batch
60
- wandb.log({"samples_per_batch", samples_s_batch}, step=epoch)
+ wandb.log({"samples_per_batch": samples_s_batch}, step=epoch)
61
self.samples_s += samples_s_batch
62
63
def on_train_end(self, logs={}):
0 commit comments