pytorch 模型加权

x33g5p2x  于2022-02-07 转载在 其他  
字(0.6k)|赞(0)|评价(0)|浏览(240)
  1. from collections import OrderedDict
  2. import torch
  3. from LPRNetN.model.STN import STNet
  4. STN = STNet()
  5. state_dict1 = torch.load('weights/STNNet.pth', map_location=lambda storage, loc: storage)
  6. state_dict2 = torch.load('weights/STNNet.pth', map_location=lambda storage, loc: storage)
  7. new_state_dict1 = OrderedDict()
  8. new_state_dict2 = OrderedDict()
  9. for k, v in state_dict2.items():
  10. name = k.replace('module.', '') # remove `module.`
  11. new_state_dict2[name] = v
  12. for k, v in state_dict1.items():
  13. name = k.replace('module.', '') # remove `module.`
  14. new_state_dict1[name] =0.5*new_state_dict2[name]+0.5* v
  15. STN.load_state_dict(new_state_dict1)

相关文章