MMPose_Tutorials icon indicating copy to clipboard operation
MMPose_Tutorials copied to clipboard

ERROR: H4 in 0524

Open YingjianYu opened this issue 2 years ago • 0 comments

目标检测模型目录

detect = 'rtmdet2onnx'

关键点检测模型目录

pose = 'rtmpose2onnx'

计算设备

device = 'cpu'

device = 'cuda'

bbox_detector = Detector(detect, device) pose_detector = PoseDetector(pose, device)

执行上述代码时报如下错误

[2024-01-16 00:41:29.312] [mmdeploy] [info] [model.cpp:35] [DirectoryModel] Load model: "rtmdet2onnx" [2024-01-16 00:41:29.313] [mmdeploy] [error] [net_module.cpp:47] Net backend not found: onnxruntime, available backends: [] [2024-01-16 00:41:29.313] [mmdeploy] [error] [task.cpp:99] error parsing config: { "context": { "device": "", "model": "", "stream": "" }, "input": [ "prep_output" ], "input_map": { "img": "input" }, "is_batched": true, "module": "Net", "name": "rtmdet", "output": [ "infer_output" ], "output_map": {}, "type": "Task" } [2024-01-16 00:41:29.314] [mmdeploy] [info] [model.cpp:35] [DirectoryModel] Load model: "rtmpose2onnx" [2024-01-16 00:41:29.314] [mmdeploy] [error] [net_module.cpp:47] Net backend not found: onnxruntime, available backends: [] [2024-01-16 00:41:29.314] [mmdeploy] [error] [task.cpp:99] error parsing config: { "context": { "device": "", "model": "", "stream": "" }, "input": [ "prep_output" ], "input_map": { "img": "input" }, "is_batched": true, "module": "Net", "name": "topdownposeestimator", "output": [ "infer_output" ], "output_map": {}, "type": "Task" }

YingjianYu avatar Jan 15 '24 16:01 YingjianYu