|
|
|
@ -24,13 +24,20 @@ _logger = logging.getLogger(__name__)
|
|
|
|
|
def load_state_dict(checkpoint_path, use_ema=False):
|
|
|
|
|
if checkpoint_path and os.path.isfile(checkpoint_path):
|
|
|
|
|
checkpoint = torch.load(checkpoint_path, map_location='cpu')
|
|
|
|
|
state_dict_key = 'state_dict'
|
|
|
|
|
state_dict_key = ''
|
|
|
|
|
if isinstance(checkpoint, dict):
|
|
|
|
|
if use_ema and 'state_dict_ema' in checkpoint:
|
|
|
|
|
state_dict_key = 'state_dict_ema'
|
|
|
|
|
if state_dict_key and state_dict_key in checkpoint:
|
|
|
|
|
elif use_ema and 'model_ema' in checkpoint:
|
|
|
|
|
state_dict_key = 'model_ema'
|
|
|
|
|
elif 'state_dict' in checkpoint:
|
|
|
|
|
state_dict_key = 'state_dict'
|
|
|
|
|
elif 'model' in checkpoint:
|
|
|
|
|
state_dict_key = 'model'
|
|
|
|
|
if state_dict_key:
|
|
|
|
|
state_dict = checkpoint[state_dict_key]
|
|
|
|
|
new_state_dict = OrderedDict()
|
|
|
|
|
for k, v in checkpoint[state_dict_key].items():
|
|
|
|
|
for k, v in state_dict.items():
|
|
|
|
|
# strip `module.` prefix
|
|
|
|
|
name = k[7:] if k.startswith('module') else k
|
|
|
|
|
new_state_dict[name] = v
|
|
|
|
|