Skip to content

Commit

Permalink
Remove unneeded filename print (#540)
Browse files Browse the repository at this point in the history
  • Loading branch information
tullie authored and williamFalcon committed Nov 23, 2019
1 parent 539d7bc commit 55edf7c
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions pytorch_lightning/callbacks/pt_callbacks.py
Original file line number Diff line number Diff line change
Expand Up @@ -275,8 +275,6 @@ def on_epoch_end(self, epoch, logs=None):
filepath = f'{self.filepath}/{self.prefix}_ckpt_epoch_{epoch}_v{version_cnt}.ckpt'
version_cnt += 1

print(filepath)

if self.save_top_k != -1:
current = logs.get(self.monitor)

Expand Down

0 comments on commit 55edf7c

Please sign in to comment.