fix bug
This commit is contained in:
parent
5661c6865c
commit
3a2d0f61ee
|
@ -98,7 +98,7 @@ def load_dygraph_params(config, model, logger, optimizer):
|
||||||
pm = config['Global']['pretrained_model']
|
pm = config['Global']['pretrained_model']
|
||||||
if pm is None:
|
if pm is None:
|
||||||
return {}
|
return {}
|
||||||
if not os.path.exists(pm) or not os.path.exists(pm + ".pdparams"):
|
if not os.path.exists(pm) and not os.path.exists(pm + ".pdparams"):
|
||||||
logger.info(f"The pretrained_model {pm} does not exists!")
|
logger.info(f"The pretrained_model {pm} does not exists!")
|
||||||
return {}
|
return {}
|
||||||
pm = pm if pm.endswith('.pdparams') else pm + '.pdparams'
|
pm = pm if pm.endswith('.pdparams') else pm + '.pdparams'
|
||||||
|
|
Loading…
Reference in New Issue