4 Star 0 Fork 0

xinanXu/FA-CC

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
pth2onnx.py 614 Bytes
一键复制 编辑 原始数据 按行查看 历史
xinanXu 提交于 2023-05-25 06:27 . add onnx and pth detection
import onnxruntime
import torch
from nets import get_models
def pth2onnx(load='models/best_model.pth', out="models/best_model.onnx"):
"""
Args:
load: the pth's path
out: the onnx's path
"""
model = get_models("cpu", load=load)
model.eval()
x = torch.randn(1, 3, 224, 224, requires_grad=True)
torch.onnx.export(model, x, out,
input_names=["input"], output_names=["output"],
dynamic_axes={"input": {0: "batch_size"}, "output": {0: "batch_size"}},
opset_version=12)
if __name__ == "__main__":
pth2onnx()
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/DearAtri/fa-cc.git
git@gitee.com:DearAtri/fa-cc.git
DearAtri
fa-cc
FA-CC
master

搜索帮助