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

remove never used param skip_list and fix doc string #3131

Open
wants to merge 5 commits into
base: dev-1.x
Choose a base branch
from
Open
Changes from 1 commit
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
Prev Previous commit
Next Next commit
fix doc string for mode
LeoJhonSong authored Oct 5, 2024
commit a6c9123b07afae7e250d327467a075151e51323d
6 changes: 3 additions & 3 deletions mmpose/evaluation/metrics/keypoint_3d_metrics.py
Original file line number Diff line number Diff line change
@@ -27,9 +27,9 @@ class MPJPE(BaseMetric):
ground truth. Supported options are:

- ``'mpjpe'``: no alignment will be applied
- ``'p-mpjpe'``: align in the least-square sense in scale
- ``'n-mpjpe'``: align in the least-square sense in
scale, rotation, and translation.
- ``'p-mpjpe'``: align in the least-square sense in scale,
rotation, and translation.
- ``'n-mpjpe'``: align in the least-square sense in scale.

collect_device (str): Device name used for collecting results from
different ranks during distributed training. Must be ``'cpu'`` or
6 changes: 3 additions & 3 deletions mmpose/evaluation/metrics/simple_keypoint_3d_metrics.py
Original file line number Diff line number Diff line change
@@ -25,9 +25,9 @@ class SimpleMPJPE(BaseMetric):
ground truth. Supported options are:

- ``'mpjpe'``: no alignment will be applied
- ``'p-mpjpe'``: align in the least-square sense in scale
- ``'n-mpjpe'``: align in the least-square sense in
scale, rotation, and translation.
- ``'p-mpjpe'``: align in the least-square sense in scale,
rotation, and translation.
- ``'n-mpjpe'``: align in the least-square sense in scale.

collect_device (str): Device name used for collecting results from
different ranks during distributed training. Must be ``'cpu'`` or