Skip to content

Commit de21fd5

Browse files
committed
remove print
1 parent 9d38fe3 commit de21fd5

File tree

1 file changed

+0
-7
lines changed

1 file changed

+0
-7
lines changed

pytorch_lightning/trainer/training_loop.py

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -297,9 +297,6 @@ def training_step(self, split_batch, batch_idx, opt_idx, hiddens):
297297

298298
self._check_training_step_output(training_step_output)
299299

300-
print()
301-
print("training_step", training_step_output)
302-
303300
training_step_output = self.trainer.call_hook("training_step_end", training_step_output)
304301

305302
training_step_output_for_epoch_end, training_step_output = self._process_training_step_output(
@@ -518,12 +515,8 @@ def run_training_epoch(self):
518515
# -----------------------------------------
519516
should_check_val = self.should_check_val_fx(batch_idx, is_last_batch)
520517

521-
print("should_check_val")
522-
523518
if should_check_val:
524-
print("STARTING EVALUTION")
525519
self.trainer.run_evaluation()
526-
print("FINISHED EVALUTION")
527520
val_loop_called = True
528521

529522
# reset stage to train

0 commit comments

Comments
 (0)