【.pth模型转换为.onnx模型】模型转换 英特尔神经计算棒 树莓派

转换代码

注意点:要根据你的代码进行修改,修改最初的包等

import torch
from models.with_mobilenet import PoseEstimationWithMobileNet
from modules.load_state import load_state
from action_detect.net import NetV2

def convert_onnx():
    print('start!!!')
    
    device = 'cuda' if torch.cuda.is_available() else 'cpu'
    #model_path = '/home/pi/xg_openpose_fall_detect-master/weights/checkpoint_iter_370000.pth' #这是我们要转换的模型
    
    model = PoseEstimationWithMobileNet().to(device)
    checkpoint = torch.load(r'E:/xg_openpose_fall_detect-master/weights/checkpoint_iter_370000.pth', map_location='cpu')
    load_state(model, checkpoint)
    
    model.to(device)
    model.eval()
    dummy_input = torch.randn(1,3,256,456).to(device)#输入大小   #data type nchw
    onnx_path = 'E:/xg_openpose_fall_detect-master/weights/openpose.onnx'
    print("----- pth导出为onnx模型 -----")
    output_name = "openpose.onnx"
    torch.onnx.export(model, dummy_input, onnx_path, export_params=True,input_names=['input'], output_names=['output'])
    print('convert retinaface to onnx finish!!!')

if __name__ == "__main__" :
    convert_onnx()
    
    

 https://github.com/openvinotoolkit/training_extensions/tree/develop/misc/pytorch_toolkit/human_pose_estimation 官方

import argparse

import torch

from models.with_mobilenet import PoseEstimationWithMobileNet
#from models.single_person_pose_with_mobilenet import SinglePersonPoseEstimationWithMobileNet
from modules.load_state import load_state


def convert_to_onnx(net, output_name, single_person, input_size):
    input = torch.randn(1, 3, input_size[0], input_size[1])
    input_layer_names = ['data']
    output_layer_names = ['stage_0_output_1_heatmaps', 'stage_0_output_0_pafs',
                          'stage_1_output_1_heatmaps', 'stage_1_output_0_pafs']
    if single_person:
        input = torch.randn(1, 3, input_size[0], input_size[1])
        output_layer_names = ['stage_{}_output_1_heatmaps'.format(i) for i in range(len(net.refinement_stages) + 1)]

    torch.onnx.export(net, input, output_name, verbose=True, input_names=input_layer_names,
                      output_names=output_layer_names)


if __name__ == '__main__':
    parser = argparse.ArgumentParser()
    parser.add_argument('--checkpoint-path', type=str, required=True, help='path to the checkpoint')
    parser.add_argument('--output-name', type=str, default='human-pose-estimation.onnx',
                        help='name of output model in ONNX format')
    parser.add_argument('--single-person', action='store_true', help='convert model for single-person pose estimation')
    parser.add_argument('--input-size', nargs='+', type=int,  required=True,
                        help='Size of input image in format: height width')
    parser.add_argument('--mode-interpolation', type=str, required=False, default='bilinear',
                        help='type interpolation <bilinear> or <nearest>')
    parser.add_argument('--num-refinement-stages', type=int, default=1, help='number of refinement stages')

    args = parser.parse_args()

    net = PoseEstimationWithMobileNet()
    '''
    if args.single_person:
        net = SinglePersonPoseEstimationWithMobileNet(mode=args.mode_interpolation, num_refinement_stages=args.num_refinement_stages)
    '''
    checkpoint = torch.load(args.checkpoint_path)
    #--checkpoint-path checkpoint_iter_370000.pth  --input-size 256 456
    load_state(net, checkpoint)

    convert_to_onnx(net, args.output_name, args.single_person, args.input_size)

 python scripts/convert_to_onnx.py --checkpoint-path <CHECKPOINT>

例如: python scripts/convert_to_onnx.py --checkpoint-path checkpoint_iter_370000.pth  --input-size 256 456

  • 4
    点赞
  • 7
    收藏
    觉得还不错? 一键收藏
  • 打赏
    打赏
  • 1
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

Clark-dj

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值