Burak Tagtekin
Results
1
issues of
Burak Tagtekin
Thank you for the question @peterkim95 ! To load a general checkpoint, PyTorch provides a built-in function `load_state_dict` that you can call as follow: ``` checkpoint = torch.load('tmp/checkpoint-1000') model.load_state_dict(checkpoint['model_state_dict']) ```...