From 95ec072d1e5b323aeaf230cb85955429d7319018 Mon Sep 17 00:00:00 2001 From: William Falcon Date: Wed, 7 Aug 2019 07:30:02 -0400 Subject: [PATCH] removed bad hook call --- pytorch_lightning/root_module/model_saving.py | 3 --- 1 file changed, 3 deletions(-) diff --git a/pytorch_lightning/root_module/model_saving.py b/pytorch_lightning/root_module/model_saving.py index d9c2e3a5..00b95460 100644 --- a/pytorch_lightning/root_module/model_saving.py +++ b/pytorch_lightning/root_module/model_saving.py @@ -74,9 +74,6 @@ class TrainerIO(object): # load the state_dict on the model automatically model.load_state_dict(checkpoint['state_dict']) - # call model hook - model.on_hpc_load(checkpoint) - def dump_checkpoint(self): checkpoint = {