We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
detect = 'rtmdet2onnx'
pose = 'rtmpose2onnx'
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" }
The text was updated successfully, but these errors were encountered:
No branches or pull requests
目标检测模型目录
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"
}
The text was updated successfully, but these errors were encountered: