-
Notifications
You must be signed in to change notification settings - Fork 1.2k
New issue
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
[Fix] Avoid mapping unnecessary key to albu format #1716
Conversation
* add associative embedding codec * refactor decoding [wip] * refactor decoding process * add associative embedding codec * refactor decoding refinements * add missing keypoint complement and unit test * support dynamic input_size in decoding * add unit test for decoding with dynamic size
…lab#1628) Co-authored-by: Yining Li <liyining0712@gmail.com>
* add colab tut * update tutorial
…est_pipeline` to `val_pipeline` (open-mmlab#1651)
* [Doc] Refine installation docs * modify installation verification * fix links in readme * fix typos in demo * fix demo results * fix demo image * refine some docs * update links * fix overview image Co-authored-by: lupeng <penglu2097@gmail.com>
…1668) * fix visualizer's dataset_meta error in visualization_hook with multiple GPUs * refine dataset browser * use string typehint for compatibility with python3.6 * update unittest for visualizer and visulization_hook * refine visualizer to avoid saving duplicated images with visualization_hook * refine dataset browser
* refine demo and visualization * refine topdown face demo * resolve comments * fix keypoint and skeleton transparency Co-authored-by: lupeng <penglu2097@gmail.com>
…b#1627) Co-authored-by: Qikai Li <87690686+liqikai9@users.noreply.github.com>
* update algorithm readme with performance tables * resolve comments
…ble (open-mmlab#1710) * add algorithm readme * update ckpt
Codecov ReportBase: 77.76% // Head: 77.76% // No change to project coverage 👍
Additional details and impacted files@@ Coverage Diff @@
## dev-1.x #1716 +/- ##
========================================
Coverage 77.76% 77.76%
========================================
Files 204 204
Lines 11712 11712
Branches 1953 1953
========================================
Hits 9108 9108
Misses 2205 2205
Partials 399 399
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. |
CI failed. Please check it. |
* specify mmengine version * fix denpendency version
#1715 has been merged which fixes the CI issue. Please rebase onto dev-1.x |
9134736
to
aafc17f
Compare
Done |
d837dce
to
2489991
Compare
Motivation
The original results of data info may contain the key like
keypoints
which may trigger unexpected functions and raise error in albu likeapply_to_keypoint
.Modification
Modify
mmpose/datasets/transforms/common_transforms.py
, only map those keys that are specified in keymap_to_albu to albu format.BC-breaking (Optional)
Use cases (Optional)
Checklist
Before PR:
After PR: