赞
踩
方案1.
尝试用
state_dict = torch.load(model_name)
model.load_state_dict({k.replace('module.', ''): v for k, v in state_dict.items()})
方案2.
训练好的模型文件好像字典键值有很多个,如optimizer,epoch,args等,我们只需要模型参数文件state_dict
state_dict = torch.load(new_model)
run_logger.info('{} start evaluation!!!'.format(new_model))
model.load_state_dict(state_dict['state_dict'])
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。