Skip to content
New issue

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

[onnxruntime] Adds yolov8n pose model for OnnxRuntime #3309

Merged
merged 1 commit into from
Jul 9, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@ public class OrtModelZoo extends ModelZoo {
addModel(REPOSITORY.model(CV.IMAGE_CLASSIFICATION, GROUP_ID, "resnet", "0.0.1"));
addModel(REPOSITORY.model(CV.OBJECT_DETECTION, GROUP_ID, "yolo5s", "0.0.1"));
addModel(REPOSITORY.model(CV.OBJECT_DETECTION, GROUP_ID, "yolov8n", "0.0.1"));
addModel(REPOSITORY.model(CV.POSE_ESTIMATION, GROUP_ID, "yolov8n-pose", "0.0.1"));
addModel(REPOSITORY.model(Tabular.SOFTMAX_REGRESSION, GROUP_ID, "iris_flowers", "0.0.1"));
}

Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
{
"metadataVersion": "0.2",
"resourceType": "model",
"application": "cv/pose_estimation",
"groupId": "ai.djl.onnxruntime",
"artifactId": "yolov8n-pose",
"name": "Yolov8n pose",
"description": "Yolov8n Pose Estimation",
"website": "http://www.djl.ai/engines/onnxruntime/onnxruntime-engine",
"licenses": {
"license": {
"name": "The Apache License, Version 2.0",
"url": "https://www.apache.org/licenses/LICENSE-2.0"
}
},
"artifacts": [
{
"version": "0.0.1",
"snapshot": false,
"name": "yolov8n-pose",
"properties": {
},
"arguments": {
"width": 640,
"height": 640,
"resize": true,
"threshold": 0.25,
"translatorFactory": "ai.djl.modality.cv.translator.YoloPoseTranslatorFactory"
},
"files": {
"model": {
"uri": "0.0.1/yolov8n-pose.zip",
"sha1Hash": "8b968172ad2dd80a40fd16a276274ee8e2a2ff44",
"name": "",
"size": 11535121
}
}
}
]
}
Loading