【SOP】使用MMDeploy将MMAction2的模型转换为TensorRT

配置环境

执行一个MMAction2的Demo

执行 demo/demo.py ,并使用 tsm 配置文件。

bash 复制代码
python demo/demo.py "configs/recognition/tsm/tsm_imagenet-pretrained-r50_8xb16-1x1x16-50e_kinetics400-rgb.py" "../mmaction2 Ckpt/tsm_imagenet-pretrained-r50_8xb16-1x1x16-50e_kinetics400-rgb_20220831-042b1748.pth" "demo/demo.mp4" "tools/data/kinetics/label_map_k400.txt"

将Demo转为TensorRT

Clone the mmdeploy repo: git clone -b main https://github.com/open-mmlab/mmdeploy.git

假设当前路径是:

其中 Ckpt 存放了 .pth 文件,将要生成的 .onnx.engine 也会放在 Ckpt 中。.engine 就是转换好的 TensorRT 文件。

执行下面的指令完成TensorRT转换:

bash 复制代码
cd mmdeploy
python tools/deploy.py "configs/mmaction/video-recognition/video-recognition_2d_tensorrt_static-224x224.py" "../mmaction2/configs/recognition/tsm/tsm_imagenet-pretrained-r50_8xb16-1x1x16-50e_kinetics400-rgb.py" "../Ckpt/tsm_imagenet-pretrained-r50_8xb16-1x1x16-50e_kinetics400-rgb_20220831-042b1748.pth" "tests/data/arm_wrestling.mp4" --work-dir "../Ckpt/tsm_trt" --device cuda:0 --show --dump-info

会遇到报错:

Error Code 4: Internal Error (input: kMIN dimensions in profile 0 are [1,250,3,224,224] but input has static dimensions [1,160,3,224,224].)

Because the shape in mmdeploy/configs/mmaction/video-recognition/video-recognition_2d_tensorrt_static-224x224.py is default as [1, 250, 3, 224, 224], while the shape of tests/data/arm_wrestling.mp4 is [1, 160, 3, 224, 224]. The shapes should be the same.

修改 [1, 250, 3, 224, 224][1, 160, 3, 224, 224] 后即可。

相关推荐
xiaokcehui5 分钟前
深度学习与神经网络
人工智能·深度学习·神经网络
Watermelo6179 分钟前
DeepSeek:全栈开发者视角下的AI革命者
人工智能·深度学习·神经网络·机器学习·语言模型·自然语言处理·transformer
bohu8313 分钟前
亚博microros小车-原生ubuntu支持系列:21 颜色追踪
人工智能·opencv·ubuntu·机器人·视觉检测·microros·视觉追踪
金融OG1 小时前
100.1 AI量化面试题:解释夏普比率(Sharpe Ratio)的计算方法及其在投资组合管理中的应用,并说明其局限性
大数据·人工智能·python·机器学习·金融
Naion1 小时前
吴恩达深度学习——有效运作神经网络
深度学习·神经网络·机器学习
明晚十点睡1 小时前
2022ACMToG | 寻找快速的去马赛克算法
人工智能·python·深度学习·算法·机器学习·计算机视觉
繁华落尽,寻一世真情1 小时前
【AudioClassificationModelZoo-Pytorch】基于Pytorch的声音事件检测分类系统
人工智能·pytorch·分类
wzx_Eleven2 小时前
利用腾讯云cloud studio云端免费部署deepseek-R1
人工智能·云计算·腾讯云
ኈ ቼ ዽ2 小时前
机器学习day5
人工智能·机器学习
Fairy要carry2 小时前
一文了解边缘计算
人工智能·边缘计算