From 5f57792131946c317f24e6d6a4870f0844ac51ec Mon Sep 17 00:00:00 2001 From: William Falcon Date: Wed, 3 Jul 2019 15:24:56 -0400 Subject: [PATCH] added single node distdataparallel --- pytorch_lightning/models/trainer.py | 1 + 1 file changed, 1 insertion(+) diff --git a/pytorch_lightning/models/trainer.py b/pytorch_lightning/models/trainer.py index eb4f63c1..ceb5e397 100644 --- a/pytorch_lightning/models/trainer.py +++ b/pytorch_lightning/models/trainer.py @@ -293,6 +293,7 @@ class Trainer(TrainerIO): """ This is called before pickling. """ state = self.__dict__.copy() del state['cluster'] + del state['experiment'] return state def __dp_train(self, gpu_nb, proc_rank):