Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 3301433

Browse files
authoredAug 18, 2021
Fix random behavior of update_model_index in pre-commit hook (open-mmlab#866)
* Add require_serial to prevent multi-threading that causes file I/O conflict * Modify update_model_index.py to prevent redundant file I/O * Set sort_keys=True and update model .yml files
1 parent 24dbb01 commit 3301433

File tree

115 files changed

+1789
-1785
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

115 files changed

+1789
-1785
lines changed
 

‎.pre-commit-config.yaml

+1
Original file line numberDiff line numberDiff line change
@@ -48,3 +48,4 @@ repos:
4848
additional_dependencies: [mmcv]
4949
language: python
5050
files: ^configs/.*\.md$
51+
require_serial: true
Original file line numberDiff line numberDiff line change
@@ -1,40 +1,40 @@
11
Collections:
2-
- Name: hrnet_animalpose
3-
Metadata:
2+
- Metadata:
43
Architecture:
54
- HRNet
6-
README: configs/animal/2d_kpt_sview_rgb_img/topdown_heatmap/animalpose/hrnet_animalpose.md
5+
Name: hrnet_animalpose
76
Paper:
87
- http://openaccess.thecvf.com/content_CVPR_2019/html/Sun_Deep_High-Resolution_Representation_Learning_for_Human_Pose_Estimation_CVPR_2019_paper.html
98
- http://openaccess.thecvf.com/content_ICCV_2019/html/Cao_Cross-Domain_Adaptation_for_Animal_Pose_Estimation_ICCV_2019_paper.html
9+
README: configs/animal/2d_kpt_sview_rgb_img/topdown_heatmap/animalpose/hrnet_animalpose.md
1010
Models:
11-
- Name: animal--2d_kpt_sview_rgb_img--topdown_heatmap--animalpose--hrnet_w32_animalpose_256x256
11+
- Config: configs/animal/2d_kpt_sview_rgb_img/topdown_heatmap/animalpose/hrnet_w32_animalpose_256x256.py
1212
In Collection: hrnet_animalpose
13-
Config: configs/animal/2d_kpt_sview_rgb_img/topdown_heatmap/animalpose/hrnet_w32_animalpose_256x256.py
1413
Metadata:
1514
Training Data: Animal-Pose
15+
Name: animal--2d_kpt_sview_rgb_img--topdown_heatmap--animalpose--hrnet_w32_animalpose_256x256
1616
Results:
17-
- Task: 2D Animal Keypoint Detection
18-
Dataset: Animal-Pose
17+
- Dataset: Animal-Pose
1918
Metrics:
2019
AP: 0.736
2120
AP@0.5: 0.959
2221
AP@0.75: 0.832
2322
AR: 0.775
2423
AR@0.5: 0.966
24+
Task: 2D Animal Keypoint Detection
2525
Weights: https://download.openmmlab.com/mmpose/animal/hrnet/hrnet_w32_animalpose_256x256-1aa7f075_20210426.pth
26-
- Name: animal--2d_kpt_sview_rgb_img--topdown_heatmap--animalpose--hrnet_w48_animalpose_256x256
26+
- Config: configs/animal/2d_kpt_sview_rgb_img/topdown_heatmap/animalpose/hrnet_w48_animalpose_256x256.py
2727
In Collection: hrnet_animalpose
28-
Config: configs/animal/2d_kpt_sview_rgb_img/topdown_heatmap/animalpose/hrnet_w48_animalpose_256x256.py
2928
Metadata:
3029
Training Data: Animal-Pose
30+
Name: animal--2d_kpt_sview_rgb_img--topdown_heatmap--animalpose--hrnet_w48_animalpose_256x256
3131
Results:
32-
- Task: 2D Animal Keypoint Detection
33-
Dataset: Animal-Pose
32+
- Dataset: Animal-Pose
3433
Metrics:
3534
AP: 0.737
3635
AP@0.5: 0.959
3736
AP@0.75: 0.823
3837
AR: 0.778
3938
AR@0.5: 0.962
39+
Task: 2D Animal Keypoint Detection
4040
Weights: https://download.openmmlab.com/mmpose/animal/hrnet/hrnet_w48_animalpose_256x256-34644726_20210426.pth

0 commit comments

Comments
 (0)
Please sign in to comment.