Thanks for your contribution and we appreciate it a lot. The following instructions would make your pull request more healthy and more easily get feedback. If you do not understand some items, don't worry, just make the pull request and seek help from maintainers.
Add COCOPoseMetric under mmeval/metrics/coco_pose.py.
Add some test data: tests/test_metrics/data/coco_pose_sample.json, tests/test_metrics/data/crowdpose_sample.json, tests/test_metrics/data/ap10k_sample.json and unit tests.
Add nms function under mmeval/metrics/utils/nms.py.
BC-breaking (Optional)
Does the modification introduce changes that break the backward-compatibility of the downstream repos?
If so, please describe how it breaks the compatibility and how the downstream projects should modify their code to keep compatibility with this PR.
Use cases (Optional)
If this PR introduces a new feature, it is better to list some use cases here, and update the documentation.
Checklist
Pre-commit or other linting tools are used to fix the potential lint issues.
The modification is covered by complete unit tests. If not, please add more unit test to ensure the correctness.
If the modification has potential influence on downstream projects, this PR should be tested with downstream projects, like MMDet or MMCls.
The documentation has been modified accordingly, like docstring or example tutorials.
Comments
Change of examples in mmeval/metrics/coco_pose.py: add case and simplify input
Fix all formats and typos
add function aims at keeping consistent with that of COCODetection, and after discussion, no modification is made
Thanks for your contribution and we appreciate it a lot. The following instructions would make your pull request more healthy and more easily get feedback. If you do not understand some items, don't worry, just make the pull request and seek help from maintainers.
Motivation
Add
COCOPoseMetric
for pose estimation task.PR in mmpose: https://github.com/open-mmlab/mmpose/pull/1777, about the results verification.
Modification
COCOPoseMetric
undermmeval/metrics/coco_pose.py
.tests/test_metrics/data/coco_pose_sample.json
,tests/test_metrics/data/crowdpose_sample.json
,tests/test_metrics/data/ap10k_sample.json
and unit tests.nms
function undermmeval/metrics/utils/nms.py
.BC-breaking (Optional)
Does the modification introduce changes that break the backward-compatibility of the downstream repos? If so, please describe how it breaks the compatibility and how the downstream projects should modify their code to keep compatibility with this PR.
Use cases (Optional)
If this PR introduces a new feature, it is better to list some use cases here, and update the documentation.
Checklist
Comments
mmeval/metrics/coco_pose.py
: add case and simplify inputadd
function aims at keeping consistent with that ofCOCODetection
, and after discussion, no modification is madeyapf
hook