From 53a1a6d46233cd58167ab2e66a1e71e45d60d30c Mon Sep 17 00:00:00 2001 From: William Falcon Date: Thu, 18 Jul 2019 16:37:48 -0400 Subject: [PATCH] removed print lines --- 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 d6ca2c1eda..a1d63d2c6b 100644 --- a/pytorch_lightning/models/trainer.py +++ b/pytorch_lightning/models/trainer.py @@ -372,7 +372,6 @@ class Trainer(TrainerIO): # when using multi-node or DDP within a node start each module in a separate process if self.use_ddp: - print('using ddp') # must copy only the meta of the exp so it survives pickle/unpickle when going to new process self.experiment = self.experiment.get_meta_copy() task = int(os.environ['SLURM_LOCALID']) @@ -382,7 +381,6 @@ class Trainer(TrainerIO): # 1 gpu or dp option triggers training using DP module # easier to avoid NCCL issues elif self.use_dp: - print('using dp') self.dp_train(model) # ON CPU