赞
踩
import torch import torch.nn as nn # 创建一个示例模型 model = nn.Sequential( nn.Linear(10, 5), nn.ReLU(), nn.Linear(5, 2) ) # 保存模型到文件 torch.save(model.state_dict(), 'model.pth') import torch import torch.nn as nn # 创建一个与之前示例模型结构相同的实例 model = nn.Sequential( nn.Linear(10, 5), nn.ReLU(), nn.Linear(5, 2) ) # 加载保存的模型参数 model.load_state_dict(torch.load('model.pth'))
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。