-
Notifications
You must be signed in to change notification settings - Fork 1.3k
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
[Feature] Keypoint partition metric #1944
[Feature] Keypoint partition metric #1944
Conversation
Codecov ReportBase: 80.22% // Head: 80.08% // Decreases project coverage by
Additional details and impacted files@@ Coverage Diff @@
## dev-1.x #1944 +/- ##
===========================================
- Coverage 80.22% 80.08% -0.15%
===========================================
Files 209 210 +1
Lines 12417 12495 +78
Branches 2100 2110 +10
===========================================
+ Hits 9962 10006 +44
- Misses 2004 2040 +36
+ Partials 451 449 -2
Flags with carried forward coverage won't be shown. Click here to find out more.
Help us with your feedback. Take ten seconds to tell us how you rate us. Have a feature suggestion? Share it here. ☔ View full report at Codecov. |
0984a41
to
6f43219
Compare
Motivation
Sometimes one may be interested in the performance of a pose model on certain body parts rather than on all the keypoints. For example,
CocoWholeBodyMetric
evaluates coco metric on body, foot, face, lefthand and righthand. However,CocoWholeBodyMetric
is not flexible enough to be applied to arbitrary custom datasets. Therefore, we provide this wrapper metric.Modification
A new wrapper metric class is added.
Unit tests have been added.
BC-breaking (Optional)
No.
Use cases (Optional)
In my dataset, there are 40 keypoints. Some belongs to the body (coco 17 points), some belongs to foot and hands, etc. In the config file, we can do the following
Checklist
Before PR:
After PR: