From 09ed6904c22a02c6ced14128debbdb39aedf35e3 Mon Sep 17 00:00:00 2001 From: William Falcon Date: Wed, 3 Jul 2019 15:25:56 -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 8594f731f2..eedf955baa 100644 --- a/pytorch_lightning/models/trainer.py +++ b/pytorch_lightning/models/trainer.py @@ -292,7 +292,7 @@ class Trainer(TrainerIO): def __getstate__(self): """ This is called before pickling. """ state = self.__dict__.copy() - del state['cluster'] + # del state['cluster'] del state['experiment'] return state