首页
技术博客
登录
6mi
u
盘
搜
搜 索
技术博客
pytorch两种模型保存方式
pytorch两种模型保存方式
tech
2025-03-05
15
只保存模型参数
# 保存 torch.save(model.state_dict(), '\parameter.pkl') # 加载 model = TheModelClass(...) model.load_state_dict(torch.load('\parameter.pkl'))
保存完整模型
# 保存 torch.save(model, '\model.pkl') # 加载 model = torch.load('\model.pkl')
转载请注明原文地址:https://tech.qufami.com/read-20936.html
最新回复
(
0
)