From b3ed4abe0f771b72b926c1da3503f7b81934c432 Mon Sep 17 00:00:00 2001 From: William Falcon Date: Wed, 24 Jul 2019 10:38:45 -0400 Subject: [PATCH] added debugging util --- pytorch_lightning/models/trainer.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pytorch_lightning/models/trainer.py b/pytorch_lightning/models/trainer.py index 6d3a72fcf2..9cdbd7c20c 100644 --- a/pytorch_lightning/models/trainer.py +++ b/pytorch_lightning/models/trainer.py @@ -250,7 +250,7 @@ class Trainer(TrainerIO): @property def __tng_tqdm_dic(self): - ForkedPdb().set_trace() + # ForkedPdb().set_trace() tqdm_dic = { 'tng_loss': '{0:.3f}'.format(self.avg_loss), 'v_nb': '{}'.format(self.experiment.version),