From f650253cae27ab77b85e0246e13ec7e727fcf67c Mon Sep 17 00:00:00 2001 From: William Falcon Date: Thu, 18 Jul 2019 11:40:10 -0400 Subject: [PATCH] set dp as default backend --- pytorch_lightning/models/trainer.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/pytorch_lightning/models/trainer.py b/pytorch_lightning/models/trainer.py index 56654e52ab..67f72c566f 100644 --- a/pytorch_lightning/models/trainer.py +++ b/pytorch_lightning/models/trainer.py @@ -271,11 +271,9 @@ class Trainer(TrainerIO): # ----------------- # RUN VALIDATION STEP # ----------------- - pdb.set_trace() if self.use_ddp: output = model(data_batch, batch_i) elif self.use_dp: - pdb.set_trace() output = model(data_batch, batch_i) output = reduce_distributed_output(output, len(self.data_parallel_device_ids))