From 5ff3a90a6fccddb72d8200682beca95a5ea0f6ba Mon Sep 17 00:00:00 2001 From: William Falcon Date: Wed, 3 Jul 2019 15:23:47 -0400 Subject: [PATCH] added single node distdataparallel --- 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 463a6cbd..e8783b57 100644 --- a/pytorch_lightning/models/trainer.py +++ b/pytorch_lightning/models/trainer.py @@ -284,7 +284,7 @@ class Trainer(TrainerIO): # when GPU is called, spawn off a single worker for each gpu if self.on_gpu: rank = 0 - self.model = model + # self.model = model mp.spawn(dummy, nprocs=len(self.data_parallel_device_ids), args=(self, )) else: self.__run_pretrain_routine(model)