load_spawn_weights only in proc rank 0 (#1385)
Co-authored-by: Alexander Reshytko <areshytko@Alexanders-MacBook-Pro.local>
This commit is contained in:
parent
4ed3027309
commit
9754c5da55
|
@ -363,6 +363,10 @@ class TrainerDDPMixin(ABC):
|
||||||
:param model:
|
:param model:
|
||||||
:return:
|
:return:
|
||||||
"""
|
"""
|
||||||
|
|
||||||
|
loaded_model = original_model
|
||||||
|
|
||||||
|
if self.proc_rank == 0:
|
||||||
# load weights saved in ddp
|
# load weights saved in ddp
|
||||||
path = os.path.join(self.default_save_path, '__temp_weight_ddp_end.ckpt')
|
path = os.path.join(self.default_save_path, '__temp_weight_ddp_end.ckpt')
|
||||||
loaded_model = original_model.__class__.load_from_checkpoint(path)
|
loaded_model = original_model.__class__.load_from_checkpoint(path)
|
||||||
|
|
Loading…
Reference in New Issue