fixed print bug when using load_model args
This commit is contained in:
parent
a93fdb0f78
commit
e7f5b9eccc
|
@ -54,7 +54,7 @@ def load_model(model, model_path, optimizer=None, resume=False,
|
||||||
if state_dict[k].shape != model_state_dict[k].shape:
|
if state_dict[k].shape != model_state_dict[k].shape:
|
||||||
print('Skip loading parameter {}, required shape{}, '\
|
print('Skip loading parameter {}, required shape{}, '\
|
||||||
'loaded shape{}. {}'.format(
|
'loaded shape{}. {}'.format(
|
||||||
k, model_state_dict[k].shape, state_dict[k].shape) + msg)
|
k, model_state_dict[k].shape, state_dict[k].shape, msg))
|
||||||
state_dict[k] = model_state_dict[k]
|
state_dict[k] = model_state_dict[k]
|
||||||
else:
|
else:
|
||||||
print('Drop parameter {}.'.format(k) + msg)
|
print('Drop parameter {}.'.format(k) + msg)
|
||||||
|
|
Loading…
Reference in New Issue