Daniel Frías Balbuena

Results 3 comments of Daniel Frías Balbuena

Hi, I'm trying to export RTMO model to TensorRT and I get the an error. My code is the following one: ``` from mmdeploy.apis import torch2onnx from mmdeploy.apis.tensorrt import onnx2tensorrt...

With RTMPose-M it works, this is my what i change from my last code: ``` img = 'mmdeploy/demo/resources/human-pose.jpg' work_dir = 'work_dir/trt/rtmpose-M' save_file = 'end2end.onnx' deploy_cfg = 'mmdeploy/configs/mmpose/pose-detection_tensorrt_dynamic-256x192.py' model_cfg = 'mmpose/configs/body_2d_keypoint/rtmpose/coco/rtmpose-m_8xb256-420e_coco-256x192.py'...

With RTMDet Nano I get the same error that RTMO This is what I change: ``` img = 'mmdeploy/demo/resources/human-pose.jpg' work_dir = 'work_dir/trt/rtmdet-nano' save_file = 'end2end.onnx' deploy_cfg = 'mmdeploy/configs/mmdet/detection/detection_tensorrt_static-320x320.py' model_cfg =...