diff --git a/.dev_scripts/github/update_model_index.py b/.dev_scripts/github/update_model_index.py index 817b35126e..37f9e1b443 100755 --- a/.dev_scripts/github/update_model_index.py +++ b/.dev_scripts/github/update_model_index.py @@ -149,16 +149,15 @@ def parse_md(md_file): """ readme_path = osp.relpath(md_file, MMPOSE_ROOT) - collection = dict( - Name=None, # fill in later - Metadata={'Architecture': []}, - README=readme_path, - Paper=None) + collection = {'Name': None, 'Paper': None} models = [] # record the publish year of the latest paper paper_year = -1 - dataset = 'Unknown' + dataset = None + + # architectures for collection and model + architecture = [] with open(md_file, 'r') as md: lines = md.readlines() @@ -180,17 +179,19 @@ def parse_md(md_file): paper_type = re.findall(r'\[(.*)\]', lines[i])[0] + # lower priority for dataset paper if paper_type == 'DATASET': - # DATASET paper has lower priority year = 0 if year > paper_year: collection['Paper'] = dict(Title=title, URL=url) + collection['Name'] = name paper_year = year # get architecture if paper_type in {'ALGORITHM', 'BACKBONE'}: - collection['Metadata']['Architecture'].append(name) + architecture.append(name) + # get dataset elif paper_type == 'DATASET': dataset = name @@ -234,7 +235,10 @@ def parse_md(md_file): task_name = ' '.join( [model_info['target'], model_info['task']]) - metadata = {'Training Data': dataset} + metadata = { + 'Training Data': dataset, + 'Architecture': architecture + } if flops_idx != -1: metadata['FLOPs'] = float(line[flops_idx]) if params_idx != -1: @@ -248,8 +252,10 @@ def parse_md(md_file): model = { 'Name': model_name, + 'README': + readme_path, 'In Collection': - None, # fill in later + collection['Name'], 'Config': config, 'Metadata': @@ -269,19 +275,8 @@ def parse_md(md_file): else: i += 1 - # fill in collection name - readme_name = '--'.join( - osp.splitext(osp.relpath(readme_path, 'configs'))[0].split(osp.sep)) - collection_alias = '+'.join( - collection['Metadata']['Architecture']) + f'@{dataset}' - collection_name = f'{readme_name} [{collection_alias}]' - collection['Name'] = collection_name - for model in models: - model['In Collection'] = collection_name - result = {'Collections': [collection], 'Models': models} - yml_file = md_file[:-2] + 'yml' - + yml_file = osp.splitext(md_file)[0] + '.yml' is_different = dump_yaml_and_check_difference(result, yml_file) return is_different diff --git a/configs/animal/2d_kpt_sview_rgb_img/topdown_heatmap/animalpose/hrnet_animalpose.yml b/configs/animal/2d_kpt_sview_rgb_img/topdown_heatmap/animalpose/hrnet_animalpose.yml index 18110a5b15..b0bca15e59 100644 --- a/configs/animal/2d_kpt_sview_rgb_img/topdown_heatmap/animalpose/hrnet_animalpose.yml +++ b/configs/animal/2d_kpt_sview_rgb_img/topdown_heatmap/animalpose/hrnet_animalpose.yml @@ -1,20 +1,17 @@ Collections: -- Metadata: - Architecture: - - HRNet - Name: animal--2d_kpt_sview_rgb_img--topdown_heatmap--animalpose--hrnet_animalpose - [HRNet@Animal-Pose] +- Name: HRNet Paper: Title: Deep high-resolution representation learning for human pose estimation URL: http://openaccess.thecvf.com/content_CVPR_2019/html/Sun_Deep_High-Resolution_Representation_Learning_for_Human_Pose_Estimation_CVPR_2019_paper.html - README: configs/animal/2d_kpt_sview_rgb_img/topdown_heatmap/animalpose/hrnet_animalpose.md Models: - Config: configs/animal/2d_kpt_sview_rgb_img/topdown_heatmap/animalpose/hrnet_w32_animalpose_256x256.py - In Collection: animal--2d_kpt_sview_rgb_img--topdown_heatmap--animalpose--hrnet_animalpose - [HRNet@Animal-Pose] + In Collection: HRNet Metadata: + Architecture: &id001 + - HRNet Training Data: Animal-Pose Name: topdown_heatmap_hrnet_w32_animalpose_256x256 + README: configs/animal/2d_kpt_sview_rgb_img/topdown_heatmap/animalpose/hrnet_animalpose.md Results: - Dataset: Animal-Pose Metrics: @@ -26,11 +23,12 @@ Models: Task: Animal 2D Keypoint Weights: https://download.openmmlab.com/mmpose/animal/hrnet/hrnet_w32_animalpose_256x256-1aa7f075_20210426.pth - Config: configs/animal/2d_kpt_sview_rgb_img/topdown_heatmap/animalpose/hrnet_w48_animalpose_256x256.py - In Collection: animal--2d_kpt_sview_rgb_img--topdown_heatmap--animalpose--hrnet_animalpose - [HRNet@Animal-Pose] + In Collection: HRNet Metadata: + Architecture: *id001 Training Data: Animal-Pose Name: topdown_heatmap_hrnet_w48_animalpose_256x256 + README: configs/animal/2d_kpt_sview_rgb_img/topdown_heatmap/animalpose/hrnet_animalpose.md Results: - Dataset: Animal-Pose Metrics: diff --git a/configs/animal/2d_kpt_sview_rgb_img/topdown_heatmap/animalpose/resnet_animalpose.yml b/configs/animal/2d_kpt_sview_rgb_img/topdown_heatmap/animalpose/resnet_animalpose.yml index 323b85a1a9..4ebbde7ddc 100644 --- a/configs/animal/2d_kpt_sview_rgb_img/topdown_heatmap/animalpose/resnet_animalpose.yml +++ b/configs/animal/2d_kpt_sview_rgb_img/topdown_heatmap/animalpose/resnet_animalpose.yml @@ -1,20 +1,17 @@ Collections: -- Metadata: - Architecture: - - SimpleBaseline2D - Name: animal--2d_kpt_sview_rgb_img--topdown_heatmap--animalpose--resnet_animalpose - [SimpleBaseline2D@Animal-Pose] +- Name: SimpleBaseline2D Paper: Title: Simple baselines for human pose estimation and tracking URL: http://openaccess.thecvf.com/content_ECCV_2018/html/Bin_Xiao_Simple_Baselines_for_ECCV_2018_paper.html - README: configs/animal/2d_kpt_sview_rgb_img/topdown_heatmap/animalpose/resnet_animalpose.md Models: - Config: configs/animal/2d_kpt_sview_rgb_img/topdown_heatmap/animalpose/res50_animalpose_256x256.py - In Collection: animal--2d_kpt_sview_rgb_img--topdown_heatmap--animalpose--resnet_animalpose - [SimpleBaseline2D@Animal-Pose] + In Collection: SimpleBaseline2D Metadata: + Architecture: &id001 + - SimpleBaseline2D Training Data: Animal-Pose Name: topdown_heatmap_res50_animalpose_256x256 + README: configs/animal/2d_kpt_sview_rgb_img/topdown_heatmap/animalpose/resnet_animalpose.md Results: - Dataset: Animal-Pose Metrics: @@ -26,11 +23,12 @@ Models: Task: Animal 2D Keypoint Weights: https://download.openmmlab.com/mmpose/animal/resnet/res50_animalpose_256x256-e1f30bff_20210426.pth - Config: configs/animal/2d_kpt_sview_rgb_img/topdown_heatmap/animalpose/res101_animalpose_256x256.py - In Collection: animal--2d_kpt_sview_rgb_img--topdown_heatmap--animalpose--resnet_animalpose - [SimpleBaseline2D@Animal-Pose] + In Collection: SimpleBaseline2D Metadata: + Architecture: *id001 Training Data: Animal-Pose Name: topdown_heatmap_res101_animalpose_256x256 + README: configs/animal/2d_kpt_sview_rgb_img/topdown_heatmap/animalpose/resnet_animalpose.md Results: - Dataset: Animal-Pose Metrics: @@ -42,11 +40,12 @@ Models: Task: Animal 2D Keypoint Weights: https://download.openmmlab.com/mmpose/animal/resnet/res101_animalpose_256x256-85563f4a_20210426.pth - Config: configs/animal/2d_kpt_sview_rgb_img/topdown_heatmap/animalpose/res152_animalpose_256x256.py - In Collection: animal--2d_kpt_sview_rgb_img--topdown_heatmap--animalpose--resnet_animalpose - [SimpleBaseline2D@Animal-Pose] + In Collection: SimpleBaseline2D Metadata: + Architecture: *id001 Training Data: Animal-Pose Name: topdown_heatmap_res152_animalpose_256x256 + README: configs/animal/2d_kpt_sview_rgb_img/topdown_heatmap/animalpose/resnet_animalpose.md Results: - Dataset: Animal-Pose Metrics: diff --git a/configs/animal/2d_kpt_sview_rgb_img/topdown_heatmap/ap10k/hrnet_ap10k.yml b/configs/animal/2d_kpt_sview_rgb_img/topdown_heatmap/ap10k/hrnet_ap10k.yml index 5548fcf4dc..6eb8d77134 100644 --- a/configs/animal/2d_kpt_sview_rgb_img/topdown_heatmap/ap10k/hrnet_ap10k.yml +++ b/configs/animal/2d_kpt_sview_rgb_img/topdown_heatmap/ap10k/hrnet_ap10k.yml @@ -1,19 +1,17 @@ Collections: -- Metadata: - Architecture: - - HRNet - Name: animal--2d_kpt_sview_rgb_img--topdown_heatmap--ap10k--hrnet_ap10k [HRNet@AP-10K] +- Name: HRNet Paper: Title: Deep high-resolution representation learning for human pose estimation URL: http://openaccess.thecvf.com/content_CVPR_2019/html/Sun_Deep_High-Resolution_Representation_Learning_for_Human_Pose_Estimation_CVPR_2019_paper.html - README: configs/animal/2d_kpt_sview_rgb_img/topdown_heatmap/ap10k/hrnet_ap10k.md Models: - Config: configs/animal/2d_kpt_sview_rgb_img/topdown_heatmap/ap10k/hrnet_w32_ap10k_256x256.py - In Collection: animal--2d_kpt_sview_rgb_img--topdown_heatmap--ap10k--hrnet_ap10k - [HRNet@AP-10K] + In Collection: HRNet Metadata: + Architecture: &id001 + - HRNet Training Data: AP-10K Name: topdown_heatmap_hrnet_w32_ap10k_256x256 + README: configs/animal/2d_kpt_sview_rgb_img/topdown_heatmap/ap10k/hrnet_ap10k.md Results: - Dataset: AP-10K Metrics: @@ -25,11 +23,12 @@ Models: Task: Animal 2D Keypoint Weights: https://download.openmmlab.com/mmpose/animal/hrnet/hrnet_w32_ap10k_256x256-18aac840_20211029.pth - Config: configs/animal/2d_kpt_sview_rgb_img/topdown_heatmap/ap10k/hrnet_w48_ap10k_256x256.py - In Collection: animal--2d_kpt_sview_rgb_img--topdown_heatmap--ap10k--hrnet_ap10k - [HRNet@AP-10K] + In Collection: HRNet Metadata: + Architecture: *id001 Training Data: AP-10K Name: topdown_heatmap_hrnet_w48_ap10k_256x256 + README: configs/animal/2d_kpt_sview_rgb_img/topdown_heatmap/ap10k/hrnet_ap10k.md Results: - Dataset: AP-10K Metrics: diff --git a/configs/animal/2d_kpt_sview_rgb_img/topdown_heatmap/ap10k/resnet_ap10k.yml b/configs/animal/2d_kpt_sview_rgb_img/topdown_heatmap/ap10k/resnet_ap10k.yml index 0705764ac0..2045a01b9f 100644 --- a/configs/animal/2d_kpt_sview_rgb_img/topdown_heatmap/ap10k/resnet_ap10k.yml +++ b/configs/animal/2d_kpt_sview_rgb_img/topdown_heatmap/ap10k/resnet_ap10k.yml @@ -1,19 +1,17 @@ Collections: -- Metadata: - Architecture: - - SimpleBaseline2D - Name: animal--2d_kpt_sview_rgb_img--topdown_heatmap--ap10k--resnet_ap10k [SimpleBaseline2D@AP-10K] +- Name: SimpleBaseline2D Paper: Title: Simple baselines for human pose estimation and tracking URL: http://openaccess.thecvf.com/content_ECCV_2018/html/Bin_Xiao_Simple_Baselines_for_ECCV_2018_paper.html - README: configs/animal/2d_kpt_sview_rgb_img/topdown_heatmap/ap10k/resnet_ap10k.md Models: - Config: configs/animal/2d_kpt_sview_rgb_img/topdown_heatmap/ap10k/res50_ap10k_256x256.py - In Collection: animal--2d_kpt_sview_rgb_img--topdown_heatmap--ap10k--resnet_ap10k - [SimpleBaseline2D@AP-10K] + In Collection: SimpleBaseline2D Metadata: + Architecture: &id001 + - SimpleBaseline2D Training Data: AP-10K Name: topdown_heatmap_res50_ap10k_256x256 + README: configs/animal/2d_kpt_sview_rgb_img/topdown_heatmap/ap10k/resnet_ap10k.md Results: - Dataset: AP-10K Metrics: @@ -25,11 +23,12 @@ Models: Task: Animal 2D Keypoint Weights: https://download.openmmlab.com/mmpose/animal/resnet/res50_ap10k_256x256-35760eb8_20211029.pth - Config: configs/animal/2d_kpt_sview_rgb_img/topdown_heatmap/ap10k/res101_ap10k_256x256.py - In Collection: animal--2d_kpt_sview_rgb_img--topdown_heatmap--ap10k--resnet_ap10k - [SimpleBaseline2D@AP-10K] + In Collection: SimpleBaseline2D Metadata: + Architecture: *id001 Training Data: AP-10K Name: topdown_heatmap_res101_ap10k_256x256 + README: configs/animal/2d_kpt_sview_rgb_img/topdown_heatmap/ap10k/resnet_ap10k.md Results: - Dataset: AP-10K Metrics: diff --git a/configs/animal/2d_kpt_sview_rgb_img/topdown_heatmap/atrw/hrnet_atrw.yml b/configs/animal/2d_kpt_sview_rgb_img/topdown_heatmap/atrw/hrnet_atrw.yml index 25f6fcc9f7..9278291358 100644 --- a/configs/animal/2d_kpt_sview_rgb_img/topdown_heatmap/atrw/hrnet_atrw.yml +++ b/configs/animal/2d_kpt_sview_rgb_img/topdown_heatmap/atrw/hrnet_atrw.yml @@ -1,18 +1,17 @@ Collections: -- Metadata: - Architecture: - - HRNet - Name: animal--2d_kpt_sview_rgb_img--topdown_heatmap--atrw--hrnet_atrw [HRNet@ATRW] +- Name: HRNet Paper: Title: Deep high-resolution representation learning for human pose estimation URL: http://openaccess.thecvf.com/content_CVPR_2019/html/Sun_Deep_High-Resolution_Representation_Learning_for_Human_Pose_Estimation_CVPR_2019_paper.html - README: configs/animal/2d_kpt_sview_rgb_img/topdown_heatmap/atrw/hrnet_atrw.md Models: - Config: configs/animal/2d_kpt_sview_rgb_img/topdown_heatmap/atrw/hrnet_w32_atrw_256x256.py - In Collection: animal--2d_kpt_sview_rgb_img--topdown_heatmap--atrw--hrnet_atrw [HRNet@ATRW] + In Collection: HRNet Metadata: + Architecture: &id001 + - HRNet Training Data: ATRW Name: topdown_heatmap_hrnet_w32_atrw_256x256 + README: configs/animal/2d_kpt_sview_rgb_img/topdown_heatmap/atrw/hrnet_atrw.md Results: - Dataset: ATRW Metrics: @@ -24,10 +23,12 @@ Models: Task: Animal 2D Keypoint Weights: https://download.openmmlab.com/mmpose/animal/hrnet/hrnet_w32_atrw_256x256-f027f09a_20210414.pth - Config: configs/animal/2d_kpt_sview_rgb_img/topdown_heatmap/atrw/hrnet_w48_atrw_256x256.py - In Collection: animal--2d_kpt_sview_rgb_img--topdown_heatmap--atrw--hrnet_atrw [HRNet@ATRW] + In Collection: HRNet Metadata: + Architecture: *id001 Training Data: ATRW Name: topdown_heatmap_hrnet_w48_atrw_256x256 + README: configs/animal/2d_kpt_sview_rgb_img/topdown_heatmap/atrw/hrnet_atrw.md Results: - Dataset: ATRW Metrics: diff --git a/configs/animal/2d_kpt_sview_rgb_img/topdown_heatmap/atrw/resnet_atrw.yml b/configs/animal/2d_kpt_sview_rgb_img/topdown_heatmap/atrw/resnet_atrw.yml index 167009fc5c..39db647905 100644 --- a/configs/animal/2d_kpt_sview_rgb_img/topdown_heatmap/atrw/resnet_atrw.yml +++ b/configs/animal/2d_kpt_sview_rgb_img/topdown_heatmap/atrw/resnet_atrw.yml @@ -1,19 +1,17 @@ Collections: -- Metadata: - Architecture: - - SimpleBaseline2D - Name: animal--2d_kpt_sview_rgb_img--topdown_heatmap--atrw--resnet_atrw [SimpleBaseline2D@ATRW] +- Name: SimpleBaseline2D Paper: Title: Simple baselines for human pose estimation and tracking URL: http://openaccess.thecvf.com/content_ECCV_2018/html/Bin_Xiao_Simple_Baselines_for_ECCV_2018_paper.html - README: configs/animal/2d_kpt_sview_rgb_img/topdown_heatmap/atrw/resnet_atrw.md Models: - Config: configs/animal/2d_kpt_sview_rgb_img/topdown_heatmap/atrw/res50_atrw_256x256.py - In Collection: animal--2d_kpt_sview_rgb_img--topdown_heatmap--atrw--resnet_atrw - [SimpleBaseline2D@ATRW] + In Collection: SimpleBaseline2D Metadata: + Architecture: &id001 + - SimpleBaseline2D Training Data: ATRW Name: topdown_heatmap_res50_atrw_256x256 + README: configs/animal/2d_kpt_sview_rgb_img/topdown_heatmap/atrw/resnet_atrw.md Results: - Dataset: ATRW Metrics: @@ -25,11 +23,12 @@ Models: Task: Animal 2D Keypoint Weights: https://download.openmmlab.com/mmpose/animal/resnet/res50_atrw_256x256-546c4594_20210414.pth - Config: configs/animal/2d_kpt_sview_rgb_img/topdown_heatmap/atrw/res101_atrw_256x256.py - In Collection: animal--2d_kpt_sview_rgb_img--topdown_heatmap--atrw--resnet_atrw - [SimpleBaseline2D@ATRW] + In Collection: SimpleBaseline2D Metadata: + Architecture: *id001 Training Data: ATRW Name: topdown_heatmap_res101_atrw_256x256 + README: configs/animal/2d_kpt_sview_rgb_img/topdown_heatmap/atrw/resnet_atrw.md Results: - Dataset: ATRW Metrics: @@ -41,11 +40,12 @@ Models: Task: Animal 2D Keypoint Weights: https://download.openmmlab.com/mmpose/animal/resnet/res101_atrw_256x256-da93f371_20210414.pth - Config: configs/animal/2d_kpt_sview_rgb_img/topdown_heatmap/atrw/res152_atrw_256x256.py - In Collection: animal--2d_kpt_sview_rgb_img--topdown_heatmap--atrw--resnet_atrw - [SimpleBaseline2D@ATRW] + In Collection: SimpleBaseline2D Metadata: + Architecture: *id001 Training Data: ATRW Name: topdown_heatmap_res152_atrw_256x256 + README: configs/animal/2d_kpt_sview_rgb_img/topdown_heatmap/atrw/resnet_atrw.md Results: - Dataset: ATRW Metrics: diff --git a/configs/animal/2d_kpt_sview_rgb_img/topdown_heatmap/fly/resnet_fly.yml b/configs/animal/2d_kpt_sview_rgb_img/topdown_heatmap/fly/resnet_fly.yml index 7dec9b000e..5cc604557d 100644 --- a/configs/animal/2d_kpt_sview_rgb_img/topdown_heatmap/fly/resnet_fly.yml +++ b/configs/animal/2d_kpt_sview_rgb_img/topdown_heatmap/fly/resnet_fly.yml @@ -1,20 +1,17 @@ Collections: -- Metadata: - Architecture: - - SimpleBaseline2D - Name: animal--2d_kpt_sview_rgb_img--topdown_heatmap--fly--resnet_fly [SimpleBaseline2D@Vinegar - Fly] +- Name: SimpleBaseline2D Paper: Title: Simple baselines for human pose estimation and tracking URL: http://openaccess.thecvf.com/content_ECCV_2018/html/Bin_Xiao_Simple_Baselines_for_ECCV_2018_paper.html - README: configs/animal/2d_kpt_sview_rgb_img/topdown_heatmap/fly/resnet_fly.md Models: - Config: configs/animal/2d_kpt_sview_rgb_img/topdown_heatmap/fly/res50_fly_192x192.py - In Collection: animal--2d_kpt_sview_rgb_img--topdown_heatmap--fly--resnet_fly [SimpleBaseline2D@Vinegar - Fly] + In Collection: SimpleBaseline2D Metadata: + Architecture: &id001 + - SimpleBaseline2D Training Data: Vinegar Fly Name: topdown_heatmap_res50_fly_192x192 + README: configs/animal/2d_kpt_sview_rgb_img/topdown_heatmap/fly/resnet_fly.md Results: - Dataset: Vinegar Fly Metrics: @@ -24,11 +21,12 @@ Models: Task: Animal 2D Keypoint Weights: https://download.openmmlab.com/mmpose/animal/resnet/res50_fly_192x192-5d0ee2d9_20210407.pth - Config: configs/animal/2d_kpt_sview_rgb_img/topdown_heatmap/fly/res101_fly_192x192.py - In Collection: animal--2d_kpt_sview_rgb_img--topdown_heatmap--fly--resnet_fly [SimpleBaseline2D@Vinegar - Fly] + In Collection: SimpleBaseline2D Metadata: + Architecture: *id001 Training Data: Vinegar Fly Name: topdown_heatmap_res101_fly_192x192 + README: configs/animal/2d_kpt_sview_rgb_img/topdown_heatmap/fly/resnet_fly.md Results: - Dataset: Vinegar Fly Metrics: @@ -38,11 +36,12 @@ Models: Task: Animal 2D Keypoint Weights: https://download.openmmlab.com/mmpose/animal/resnet/res101_fly_192x192-41a7a6cc_20210407.pth - Config: configs/animal/2d_kpt_sview_rgb_img/topdown_heatmap/fly/res152_fly_192x192.py - In Collection: animal--2d_kpt_sview_rgb_img--topdown_heatmap--fly--resnet_fly [SimpleBaseline2D@Vinegar - Fly] + In Collection: SimpleBaseline2D Metadata: + Architecture: *id001 Training Data: Vinegar Fly Name: topdown_heatmap_res152_fly_192x192 + README: configs/animal/2d_kpt_sview_rgb_img/topdown_heatmap/fly/resnet_fly.md Results: - Dataset: Vinegar Fly Metrics: diff --git a/configs/animal/2d_kpt_sview_rgb_img/topdown_heatmap/horse10/hrnet_horse10.yml b/configs/animal/2d_kpt_sview_rgb_img/topdown_heatmap/horse10/hrnet_horse10.yml index 1f03d553c6..ffcdcdc405 100644 --- a/configs/animal/2d_kpt_sview_rgb_img/topdown_heatmap/horse10/hrnet_horse10.yml +++ b/configs/animal/2d_kpt_sview_rgb_img/topdown_heatmap/horse10/hrnet_horse10.yml @@ -1,19 +1,17 @@ Collections: -- Metadata: - Architecture: - - HRNet - Name: animal--2d_kpt_sview_rgb_img--topdown_heatmap--horse10--hrnet_horse10 [HRNet@Horse-10] +- Name: HRNet Paper: Title: Deep high-resolution representation learning for human pose estimation URL: http://openaccess.thecvf.com/content_CVPR_2019/html/Sun_Deep_High-Resolution_Representation_Learning_for_Human_Pose_Estimation_CVPR_2019_paper.html - README: configs/animal/2d_kpt_sview_rgb_img/topdown_heatmap/horse10/hrnet_horse10.md Models: - Config: configs/animal/2d_kpt_sview_rgb_img/topdown_heatmap/horse10/hrnet_w32_horse10_256x256-split1.py - In Collection: animal--2d_kpt_sview_rgb_img--topdown_heatmap--horse10--hrnet_horse10 - [HRNet@Horse-10] + In Collection: HRNet Metadata: + Architecture: &id001 + - HRNet Training Data: Horse-10 Name: topdown_heatmap_hrnet_w32_horse10_256x256-split1 + README: configs/animal/2d_kpt_sview_rgb_img/topdown_heatmap/horse10/hrnet_horse10.md Results: - Dataset: Horse-10 Metrics: @@ -22,11 +20,12 @@ Models: Task: Animal 2D Keypoint Weights: https://download.openmmlab.com/mmpose/animal/hrnet/hrnet_w32_horse10_256x256_split1-401d901a_20210405.pth - Config: configs/animal/2d_kpt_sview_rgb_img/topdown_heatmap/horse10/hrnet_w32_horse10_256x256-split2.py - In Collection: animal--2d_kpt_sview_rgb_img--topdown_heatmap--horse10--hrnet_horse10 - [HRNet@Horse-10] + In Collection: HRNet Metadata: + Architecture: *id001 Training Data: Horse-10 Name: topdown_heatmap_hrnet_w32_horse10_256x256-split2 + README: configs/animal/2d_kpt_sview_rgb_img/topdown_heatmap/horse10/hrnet_horse10.md Results: - Dataset: Horse-10 Metrics: @@ -35,11 +34,12 @@ Models: Task: Animal 2D Keypoint Weights: https://download.openmmlab.com/mmpose/animal/hrnet/hrnet_w32_horse10_256x256_split2-04840523_20210405.pth - Config: configs/animal/2d_kpt_sview_rgb_img/topdown_heatmap/horse10/hrnet_w32_horse10_256x256-split3.py - In Collection: animal--2d_kpt_sview_rgb_img--topdown_heatmap--horse10--hrnet_horse10 - [HRNet@Horse-10] + In Collection: HRNet Metadata: + Architecture: *id001 Training Data: Horse-10 Name: topdown_heatmap_hrnet_w32_horse10_256x256-split3 + README: configs/animal/2d_kpt_sview_rgb_img/topdown_heatmap/horse10/hrnet_horse10.md Results: - Dataset: Horse-10 Metrics: @@ -48,11 +48,12 @@ Models: Task: Animal 2D Keypoint Weights: https://download.openmmlab.com/mmpose/animal/hrnet/hrnet_w32_horse10_256x256_split3-4db47400_20210405.pth - Config: configs/animal/2d_kpt_sview_rgb_img/topdown_heatmap/horse10/hrnet_w48_horse10_256x256-split1.py - In Collection: animal--2d_kpt_sview_rgb_img--topdown_heatmap--horse10--hrnet_horse10 - [HRNet@Horse-10] + In Collection: HRNet Metadata: + Architecture: *id001 Training Data: Horse-10 Name: topdown_heatmap_hrnet_w48_horse10_256x256-split1 + README: configs/animal/2d_kpt_sview_rgb_img/topdown_heatmap/horse10/hrnet_horse10.md Results: - Dataset: Horse-10 Metrics: @@ -61,11 +62,12 @@ Models: Task: Animal 2D Keypoint Weights: https://download.openmmlab.com/mmpose/animal/hrnet/hrnet_w48_horse10_256x256_split1-3c950d3b_20210405.pth - Config: configs/animal/2d_kpt_sview_rgb_img/topdown_heatmap/horse10/hrnet_w48_horse10_256x256-split2.py - In Collection: animal--2d_kpt_sview_rgb_img--topdown_heatmap--horse10--hrnet_horse10 - [HRNet@Horse-10] + In Collection: HRNet Metadata: + Architecture: *id001 Training Data: Horse-10 Name: topdown_heatmap_hrnet_w48_horse10_256x256-split2 + README: configs/animal/2d_kpt_sview_rgb_img/topdown_heatmap/horse10/hrnet_horse10.md Results: - Dataset: Horse-10 Metrics: @@ -74,11 +76,12 @@ Models: Task: Animal 2D Keypoint Weights: https://download.openmmlab.com/mmpose/animal/hrnet/hrnet_w48_horse10_256x256_split2-8ef72b5d_20210405.pth - Config: configs/animal/2d_kpt_sview_rgb_img/topdown_heatmap/horse10/hrnet_w48_horse10_256x256-split3.py - In Collection: animal--2d_kpt_sview_rgb_img--topdown_heatmap--horse10--hrnet_horse10 - [HRNet@Horse-10] + In Collection: HRNet Metadata: + Architecture: *id001 Training Data: Horse-10 Name: topdown_heatmap_hrnet_w48_horse10_256x256-split3 + README: configs/animal/2d_kpt_sview_rgb_img/topdown_heatmap/horse10/hrnet_horse10.md Results: - Dataset: Horse-10 Metrics: diff --git a/configs/animal/2d_kpt_sview_rgb_img/topdown_heatmap/horse10/resnet_horse10.yml b/configs/animal/2d_kpt_sview_rgb_img/topdown_heatmap/horse10/resnet_horse10.yml index a7cc7b3174..5a2d193953 100644 --- a/configs/animal/2d_kpt_sview_rgb_img/topdown_heatmap/horse10/resnet_horse10.yml +++ b/configs/animal/2d_kpt_sview_rgb_img/topdown_heatmap/horse10/resnet_horse10.yml @@ -1,19 +1,17 @@ Collections: -- Metadata: - Architecture: - - SimpleBaseline2D - Name: animal--2d_kpt_sview_rgb_img--topdown_heatmap--horse10--resnet_horse10 [SimpleBaseline2D@Horse-10] +- Name: SimpleBaseline2D Paper: Title: Simple baselines for human pose estimation and tracking URL: http://openaccess.thecvf.com/content_ECCV_2018/html/Bin_Xiao_Simple_Baselines_for_ECCV_2018_paper.html - README: configs/animal/2d_kpt_sview_rgb_img/topdown_heatmap/horse10/resnet_horse10.md Models: - Config: configs/animal/2d_kpt_sview_rgb_img/topdown_heatmap/horse10/res50_horse10_256x256-split1.py - In Collection: animal--2d_kpt_sview_rgb_img--topdown_heatmap--horse10--resnet_horse10 - [SimpleBaseline2D@Horse-10] + In Collection: SimpleBaseline2D Metadata: + Architecture: &id001 + - SimpleBaseline2D Training Data: Horse-10 Name: topdown_heatmap_res50_horse10_256x256-split1 + README: configs/animal/2d_kpt_sview_rgb_img/topdown_heatmap/horse10/resnet_horse10.md Results: - Dataset: Horse-10 Metrics: @@ -22,11 +20,12 @@ Models: Task: Animal 2D Keypoint Weights: https://download.openmmlab.com/mmpose/animal/resnet/res50_horse10_256x256_split1-3a3dc37e_20210405.pth - Config: configs/animal/2d_kpt_sview_rgb_img/topdown_heatmap/horse10/res50_horse10_256x256-split2.py - In Collection: animal--2d_kpt_sview_rgb_img--topdown_heatmap--horse10--resnet_horse10 - [SimpleBaseline2D@Horse-10] + In Collection: SimpleBaseline2D Metadata: + Architecture: *id001 Training Data: Horse-10 Name: topdown_heatmap_res50_horse10_256x256-split2 + README: configs/animal/2d_kpt_sview_rgb_img/topdown_heatmap/horse10/resnet_horse10.md Results: - Dataset: Horse-10 Metrics: @@ -35,11 +34,12 @@ Models: Task: Animal 2D Keypoint Weights: https://download.openmmlab.com/mmpose/animal/resnet/res50_horse10_256x256_split2-65e2a508_20210405.pth - Config: configs/animal/2d_kpt_sview_rgb_img/topdown_heatmap/horse10/res50_horse10_256x256-split3.py - In Collection: animal--2d_kpt_sview_rgb_img--topdown_heatmap--horse10--resnet_horse10 - [SimpleBaseline2D@Horse-10] + In Collection: SimpleBaseline2D Metadata: + Architecture: *id001 Training Data: Horse-10 Name: topdown_heatmap_res50_horse10_256x256-split3 + README: configs/animal/2d_kpt_sview_rgb_img/topdown_heatmap/horse10/resnet_horse10.md Results: - Dataset: Horse-10 Metrics: @@ -48,11 +48,12 @@ Models: Task: Animal 2D Keypoint Weights: https://download.openmmlab.com/mmpose/animal/resnet/res50_horse10_256x256_split3-9637d4eb_20210405.pth - Config: configs/animal/2d_kpt_sview_rgb_img/topdown_heatmap/horse10/res101_horse10_256x256-split1.py - In Collection: animal--2d_kpt_sview_rgb_img--topdown_heatmap--horse10--resnet_horse10 - [SimpleBaseline2D@Horse-10] + In Collection: SimpleBaseline2D Metadata: + Architecture: *id001 Training Data: Horse-10 Name: topdown_heatmap_res101_horse10_256x256-split1 + README: configs/animal/2d_kpt_sview_rgb_img/topdown_heatmap/horse10/resnet_horse10.md Results: - Dataset: Horse-10 Metrics: @@ -61,11 +62,12 @@ Models: Task: Animal 2D Keypoint Weights: https://download.openmmlab.com/mmpose/animal/resnet/res101_horse10_256x256_split1-1b7c259c_20210405.pth - Config: configs/animal/2d_kpt_sview_rgb_img/topdown_heatmap/horse10/res101_horse10_256x256-split2.py - In Collection: animal--2d_kpt_sview_rgb_img--topdown_heatmap--horse10--resnet_horse10 - [SimpleBaseline2D@Horse-10] + In Collection: SimpleBaseline2D Metadata: + Architecture: *id001 Training Data: Horse-10 Name: topdown_heatmap_res101_horse10_256x256-split2 + README: configs/animal/2d_kpt_sview_rgb_img/topdown_heatmap/horse10/resnet_horse10.md Results: - Dataset: Horse-10 Metrics: @@ -74,11 +76,12 @@ Models: Task: Animal 2D Keypoint Weights: https://download.openmmlab.com/mmpose/animal/resnet/res101_horse10_256x256_split2-30e2fa87_20210405.pth - Config: configs/animal/2d_kpt_sview_rgb_img/topdown_heatmap/horse10/res101_horse10_256x256-split3.py - In Collection: animal--2d_kpt_sview_rgb_img--topdown_heatmap--horse10--resnet_horse10 - [SimpleBaseline2D@Horse-10] + In Collection: SimpleBaseline2D Metadata: + Architecture: *id001 Training Data: Horse-10 Name: topdown_heatmap_res101_horse10_256x256-split3 + README: configs/animal/2d_kpt_sview_rgb_img/topdown_heatmap/horse10/resnet_horse10.md Results: - Dataset: Horse-10 Metrics: @@ -87,11 +90,12 @@ Models: Task: Animal 2D Keypoint Weights: https://download.openmmlab.com/mmpose/animal/resnet/res101_horse10_256x256_split3-2eea5bb1_20210405.pth - Config: configs/animal/2d_kpt_sview_rgb_img/topdown_heatmap/horse10/res152_horse10_256x256-split1.py - In Collection: animal--2d_kpt_sview_rgb_img--topdown_heatmap--horse10--resnet_horse10 - [SimpleBaseline2D@Horse-10] + In Collection: SimpleBaseline2D Metadata: + Architecture: *id001 Training Data: Horse-10 Name: topdown_heatmap_res152_horse10_256x256-split1 + README: configs/animal/2d_kpt_sview_rgb_img/topdown_heatmap/horse10/resnet_horse10.md Results: - Dataset: Horse-10 Metrics: @@ -100,11 +104,12 @@ Models: Task: Animal 2D Keypoint Weights: https://download.openmmlab.com/mmpose/animal/resnet/res152_horse10_256x256_split1-7e81fe2d_20210405.pth - Config: configs/animal/2d_kpt_sview_rgb_img/topdown_heatmap/horse10/res152_horse10_256x256-split2.py - In Collection: animal--2d_kpt_sview_rgb_img--topdown_heatmap--horse10--resnet_horse10 - [SimpleBaseline2D@Horse-10] + In Collection: SimpleBaseline2D Metadata: + Architecture: *id001 Training Data: Horse-10 Name: topdown_heatmap_res152_horse10_256x256-split2 + README: configs/animal/2d_kpt_sview_rgb_img/topdown_heatmap/horse10/resnet_horse10.md Results: - Dataset: Horse-10 Metrics: @@ -113,11 +118,12 @@ Models: Task: Animal 2D Keypoint Weights: https://download.openmmlab.com/mmpose/animal/resnet/res152_horse10_256x256_split2-3b3404a3_20210405.pth - Config: configs/animal/2d_kpt_sview_rgb_img/topdown_heatmap/horse10/res152_horse10_256x256-split3.py - In Collection: animal--2d_kpt_sview_rgb_img--topdown_heatmap--horse10--resnet_horse10 - [SimpleBaseline2D@Horse-10] + In Collection: SimpleBaseline2D Metadata: + Architecture: *id001 Training Data: Horse-10 Name: topdown_heatmap_res152_horse10_256x256-split3 + README: configs/animal/2d_kpt_sview_rgb_img/topdown_heatmap/horse10/resnet_horse10.md Results: - Dataset: Horse-10 Metrics: diff --git a/configs/animal/2d_kpt_sview_rgb_img/topdown_heatmap/locust/resnet_locust.yml b/configs/animal/2d_kpt_sview_rgb_img/topdown_heatmap/locust/resnet_locust.yml index 6043a4729a..47d99fc4b1 100644 --- a/configs/animal/2d_kpt_sview_rgb_img/topdown_heatmap/locust/resnet_locust.yml +++ b/configs/animal/2d_kpt_sview_rgb_img/topdown_heatmap/locust/resnet_locust.yml @@ -1,20 +1,17 @@ Collections: -- Metadata: - Architecture: - - SimpleBaseline2D - Name: animal--2d_kpt_sview_rgb_img--topdown_heatmap--locust--resnet_locust [SimpleBaseline2D@Desert - Locust] +- Name: SimpleBaseline2D Paper: Title: Simple baselines for human pose estimation and tracking URL: http://openaccess.thecvf.com/content_ECCV_2018/html/Bin_Xiao_Simple_Baselines_for_ECCV_2018_paper.html - README: configs/animal/2d_kpt_sview_rgb_img/topdown_heatmap/locust/resnet_locust.md Models: - Config: configs/animal/2d_kpt_sview_rgb_img/topdown_heatmap/locust/res50_locust_160x160.py - In Collection: animal--2d_kpt_sview_rgb_img--topdown_heatmap--locust--resnet_locust - [SimpleBaseline2D@Desert Locust] + In Collection: SimpleBaseline2D Metadata: + Architecture: &id001 + - SimpleBaseline2D Training Data: Desert Locust Name: topdown_heatmap_res50_locust_160x160 + README: configs/animal/2d_kpt_sview_rgb_img/topdown_heatmap/locust/resnet_locust.md Results: - Dataset: Desert Locust Metrics: @@ -24,11 +21,12 @@ Models: Task: Animal 2D Keypoint Weights: https://download.openmmlab.com/mmpose/animal/resnet/res50_locust_160x160-9efca22b_20210407.pth - Config: configs/animal/2d_kpt_sview_rgb_img/topdown_heatmap/locust/res101_locust_160x160.py - In Collection: animal--2d_kpt_sview_rgb_img--topdown_heatmap--locust--resnet_locust - [SimpleBaseline2D@Desert Locust] + In Collection: SimpleBaseline2D Metadata: + Architecture: *id001 Training Data: Desert Locust Name: topdown_heatmap_res101_locust_160x160 + README: configs/animal/2d_kpt_sview_rgb_img/topdown_heatmap/locust/resnet_locust.md Results: - Dataset: Desert Locust Metrics: @@ -38,11 +36,12 @@ Models: Task: Animal 2D Keypoint Weights: https://download.openmmlab.com/mmpose/animal/resnet/res101_locust_160x160-d77986b3_20210407.pth - Config: configs/animal/2d_kpt_sview_rgb_img/topdown_heatmap/locust/res152_locust_160x160.py - In Collection: animal--2d_kpt_sview_rgb_img--topdown_heatmap--locust--resnet_locust - [SimpleBaseline2D@Desert Locust] + In Collection: SimpleBaseline2D Metadata: + Architecture: *id001 Training Data: Desert Locust Name: topdown_heatmap_res152_locust_160x160 + README: configs/animal/2d_kpt_sview_rgb_img/topdown_heatmap/locust/resnet_locust.md Results: - Dataset: Desert Locust Metrics: diff --git a/configs/animal/2d_kpt_sview_rgb_img/topdown_heatmap/macaque/hrnet_macaque.yml b/configs/animal/2d_kpt_sview_rgb_img/topdown_heatmap/macaque/hrnet_macaque.yml index 08d7aa809c..755d4d16c2 100644 --- a/configs/animal/2d_kpt_sview_rgb_img/topdown_heatmap/macaque/hrnet_macaque.yml +++ b/configs/animal/2d_kpt_sview_rgb_img/topdown_heatmap/macaque/hrnet_macaque.yml @@ -1,19 +1,17 @@ Collections: -- Metadata: - Architecture: - - HRNet - Name: animal--2d_kpt_sview_rgb_img--topdown_heatmap--macaque--hrnet_macaque [HRNet@MacaquePose] +- Name: HRNet Paper: Title: Deep high-resolution representation learning for human pose estimation URL: http://openaccess.thecvf.com/content_CVPR_2019/html/Sun_Deep_High-Resolution_Representation_Learning_for_Human_Pose_Estimation_CVPR_2019_paper.html - README: configs/animal/2d_kpt_sview_rgb_img/topdown_heatmap/macaque/hrnet_macaque.md Models: - Config: configs/animal/2d_kpt_sview_rgb_img/topdown_heatmap/macaque/hrnet_w32_macaque_256x192.py - In Collection: animal--2d_kpt_sview_rgb_img--topdown_heatmap--macaque--hrnet_macaque - [HRNet@MacaquePose] + In Collection: HRNet Metadata: + Architecture: &id001 + - HRNet Training Data: MacaquePose Name: topdown_heatmap_hrnet_w32_macaque_256x192 + README: configs/animal/2d_kpt_sview_rgb_img/topdown_heatmap/macaque/hrnet_macaque.md Results: - Dataset: MacaquePose Metrics: @@ -25,11 +23,12 @@ Models: Task: Animal 2D Keypoint Weights: https://download.openmmlab.com/mmpose/animal/hrnet/hrnet_w32_macaque_256x192-f7e9e04f_20210407.pth - Config: configs/animal/2d_kpt_sview_rgb_img/topdown_heatmap/macaque/hrnet_w48_macaque_256x192.py - In Collection: animal--2d_kpt_sview_rgb_img--topdown_heatmap--macaque--hrnet_macaque - [HRNet@MacaquePose] + In Collection: HRNet Metadata: + Architecture: *id001 Training Data: MacaquePose Name: topdown_heatmap_hrnet_w48_macaque_256x192 + README: configs/animal/2d_kpt_sview_rgb_img/topdown_heatmap/macaque/hrnet_macaque.md Results: - Dataset: MacaquePose Metrics: diff --git a/configs/animal/2d_kpt_sview_rgb_img/topdown_heatmap/macaque/resnet_macaque.yml b/configs/animal/2d_kpt_sview_rgb_img/topdown_heatmap/macaque/resnet_macaque.yml index fe6ff863c4..7628788739 100644 --- a/configs/animal/2d_kpt_sview_rgb_img/topdown_heatmap/macaque/resnet_macaque.yml +++ b/configs/animal/2d_kpt_sview_rgb_img/topdown_heatmap/macaque/resnet_macaque.yml @@ -1,19 +1,17 @@ Collections: -- Metadata: - Architecture: - - SimpleBaseline2D - Name: animal--2d_kpt_sview_rgb_img--topdown_heatmap--macaque--resnet_macaque [SimpleBaseline2D@MacaquePose] +- Name: SimpleBaseline2D Paper: Title: Simple baselines for human pose estimation and tracking URL: http://openaccess.thecvf.com/content_ECCV_2018/html/Bin_Xiao_Simple_Baselines_for_ECCV_2018_paper.html - README: configs/animal/2d_kpt_sview_rgb_img/topdown_heatmap/macaque/resnet_macaque.md Models: - Config: configs/animal/2d_kpt_sview_rgb_img/topdown_heatmap/macaque/res50_macaque_256x192.py - In Collection: animal--2d_kpt_sview_rgb_img--topdown_heatmap--macaque--resnet_macaque - [SimpleBaseline2D@MacaquePose] + In Collection: SimpleBaseline2D Metadata: + Architecture: &id001 + - SimpleBaseline2D Training Data: MacaquePose Name: topdown_heatmap_res50_macaque_256x192 + README: configs/animal/2d_kpt_sview_rgb_img/topdown_heatmap/macaque/resnet_macaque.md Results: - Dataset: MacaquePose Metrics: @@ -25,11 +23,12 @@ Models: Task: Animal 2D Keypoint Weights: https://download.openmmlab.com/mmpose/animal/resnet/res50_macaque_256x192-98f1dd3a_20210407.pth - Config: configs/animal/2d_kpt_sview_rgb_img/topdown_heatmap/macaque/res101_macaque_256x192.py - In Collection: animal--2d_kpt_sview_rgb_img--topdown_heatmap--macaque--resnet_macaque - [SimpleBaseline2D@MacaquePose] + In Collection: SimpleBaseline2D Metadata: + Architecture: *id001 Training Data: MacaquePose Name: topdown_heatmap_res101_macaque_256x192 + README: configs/animal/2d_kpt_sview_rgb_img/topdown_heatmap/macaque/resnet_macaque.md Results: - Dataset: MacaquePose Metrics: @@ -41,11 +40,12 @@ Models: Task: Animal 2D Keypoint Weights: https://download.openmmlab.com/mmpose/animal/resnet/res101_macaque_256x192-e3b9c6bb_20210407.pth - Config: configs/animal/2d_kpt_sview_rgb_img/topdown_heatmap/macaque/res152_macaque_256x192.py - In Collection: animal--2d_kpt_sview_rgb_img--topdown_heatmap--macaque--resnet_macaque - [SimpleBaseline2D@MacaquePose] + In Collection: SimpleBaseline2D Metadata: + Architecture: *id001 Training Data: MacaquePose Name: topdown_heatmap_res152_macaque_256x192 + README: configs/animal/2d_kpt_sview_rgb_img/topdown_heatmap/macaque/resnet_macaque.md Results: - Dataset: MacaquePose Metrics: diff --git a/configs/animal/2d_kpt_sview_rgb_img/topdown_heatmap/zebra/resnet_zebra.yml b/configs/animal/2d_kpt_sview_rgb_img/topdown_heatmap/zebra/resnet_zebra.yml index 1b604aede2..dfa86029e4 100644 --- a/configs/animal/2d_kpt_sview_rgb_img/topdown_heatmap/zebra/resnet_zebra.yml +++ b/configs/animal/2d_kpt_sview_rgb_img/topdown_heatmap/zebra/resnet_zebra.yml @@ -1,20 +1,17 @@ Collections: -- Metadata: - Architecture: - - SimpleBaseline2D - Name: "animal--2d_kpt_sview_rgb_img--topdown_heatmap--zebra--resnet_zebra [SimpleBaseline2D@Gr\xE9vy\u2019s - Zebra]" +- Name: SimpleBaseline2D Paper: Title: Simple baselines for human pose estimation and tracking URL: http://openaccess.thecvf.com/content_ECCV_2018/html/Bin_Xiao_Simple_Baselines_for_ECCV_2018_paper.html - README: configs/animal/2d_kpt_sview_rgb_img/topdown_heatmap/zebra/resnet_zebra.md Models: - Config: configs/animal/2d_kpt_sview_rgb_img/topdown_heatmap/zebra/res50_zebra_160x160.py - In Collection: "animal--2d_kpt_sview_rgb_img--topdown_heatmap--zebra--resnet_zebra - [SimpleBaseline2D@Gr\xE9vy\u2019s Zebra]" + In Collection: SimpleBaseline2D Metadata: + Architecture: &id001 + - SimpleBaseline2D Training Data: "Gr\xE9vy\u2019s Zebra" Name: topdown_heatmap_res50_zebra_160x160 + README: configs/animal/2d_kpt_sview_rgb_img/topdown_heatmap/zebra/resnet_zebra.md Results: - Dataset: "Gr\xE9vy\u2019s Zebra" Metrics: @@ -24,11 +21,12 @@ Models: Task: Animal 2D Keypoint Weights: https://download.openmmlab.com/mmpose/animal/resnet/res50_zebra_160x160-5a104833_20210407.pth - Config: configs/animal/2d_kpt_sview_rgb_img/topdown_heatmap/zebra/res101_zebra_160x160.py - In Collection: "animal--2d_kpt_sview_rgb_img--topdown_heatmap--zebra--resnet_zebra - [SimpleBaseline2D@Gr\xE9vy\u2019s Zebra]" + In Collection: SimpleBaseline2D Metadata: + Architecture: *id001 Training Data: "Gr\xE9vy\u2019s Zebra" Name: topdown_heatmap_res101_zebra_160x160 + README: configs/animal/2d_kpt_sview_rgb_img/topdown_heatmap/zebra/resnet_zebra.md Results: - Dataset: "Gr\xE9vy\u2019s Zebra" Metrics: @@ -38,11 +36,12 @@ Models: Task: Animal 2D Keypoint Weights: https://download.openmmlab.com/mmpose/animal/resnet/res101_zebra_160x160-e8cb2010_20210407.pth - Config: configs/animal/2d_kpt_sview_rgb_img/topdown_heatmap/zebra/res152_zebra_160x160.py - In Collection: "animal--2d_kpt_sview_rgb_img--topdown_heatmap--zebra--resnet_zebra - [SimpleBaseline2D@Gr\xE9vy\u2019s Zebra]" + In Collection: SimpleBaseline2D Metadata: + Architecture: *id001 Training Data: "Gr\xE9vy\u2019s Zebra" Name: topdown_heatmap_res152_zebra_160x160 + README: configs/animal/2d_kpt_sview_rgb_img/topdown_heatmap/zebra/resnet_zebra.md Results: - Dataset: "Gr\xE9vy\u2019s Zebra" Metrics: diff --git a/configs/body/2d_kpt_sview_rgb_img/associative_embedding/aic/higherhrnet_aic.yml b/configs/body/2d_kpt_sview_rgb_img/associative_embedding/aic/higherhrnet_aic.yml index 08448bb423..88b64b943e 100644 --- a/configs/body/2d_kpt_sview_rgb_img/associative_embedding/aic/higherhrnet_aic.yml +++ b/configs/body/2d_kpt_sview_rgb_img/associative_embedding/aic/higherhrnet_aic.yml @@ -1,22 +1,19 @@ Collections: -- Metadata: - Architecture: - - Associative Embedding - - HigherHRNet - Name: body--2d_kpt_sview_rgb_img--associative_embedding--aic--higherhrnet_aic [Associative - Embedding+HigherHRNet@AI Challenger] +- Name: HigherHRNet Paper: Title: 'HigherHRNet: Scale-Aware Representation Learning for Bottom-Up Human Pose Estimation' URL: http://openaccess.thecvf.com/content_CVPR_2020/html/Cheng_HigherHRNet_Scale-Aware_Representation_Learning_for_Bottom-Up_Human_Pose_Estimation_CVPR_2020_paper.html - README: configs/body/2d_kpt_sview_rgb_img/associative_embedding/aic/higherhrnet_aic.md Models: - Config: configs/body/2d_kpt_sview_rgb_img/associative_embedding/aic/higherhrnet_w32_aic_512x512.py - In Collection: body--2d_kpt_sview_rgb_img--associative_embedding--aic--higherhrnet_aic - [Associative Embedding+HigherHRNet@AI Challenger] + In Collection: HigherHRNet Metadata: + Architecture: &id001 + - Associative Embedding + - HigherHRNet Training Data: AI Challenger Name: associative_embedding_higherhrnet_w32_aic_512x512 + README: configs/body/2d_kpt_sview_rgb_img/associative_embedding/aic/higherhrnet_aic.md Results: - Dataset: AI Challenger Metrics: @@ -28,11 +25,12 @@ Models: Task: Body 2D Keypoint Weights: https://download.openmmlab.com/mmpose/bottom_up/higher_hrnet32_aic_512x512-9a674c33_20210130.pth - Config: configs/body/2d_kpt_sview_rgb_img/associative_embedding/aic/higherhrnet_w32_aic_512x512.py - In Collection: body--2d_kpt_sview_rgb_img--associative_embedding--aic--higherhrnet_aic - [Associative Embedding+HigherHRNet@AI Challenger] + In Collection: HigherHRNet Metadata: + Architecture: *id001 Training Data: AI Challenger Name: associative_embedding_higherhrnet_w32_aic_512x512 + README: configs/body/2d_kpt_sview_rgb_img/associative_embedding/aic/higherhrnet_aic.md Results: - Dataset: AI Challenger Metrics: diff --git a/configs/body/2d_kpt_sview_rgb_img/associative_embedding/aic/hrnet_aic.yml b/configs/body/2d_kpt_sview_rgb_img/associative_embedding/aic/hrnet_aic.yml index c387be9f27..ed112448e6 100644 --- a/configs/body/2d_kpt_sview_rgb_img/associative_embedding/aic/hrnet_aic.yml +++ b/configs/body/2d_kpt_sview_rgb_img/associative_embedding/aic/hrnet_aic.yml @@ -1,21 +1,18 @@ Collections: -- Metadata: - Architecture: - - Associative Embedding - - HRNet - Name: body--2d_kpt_sview_rgb_img--associative_embedding--aic--hrnet_aic [Associative - Embedding+HRNet@AI Challenger] +- Name: HRNet Paper: Title: Deep high-resolution representation learning for human pose estimation URL: http://openaccess.thecvf.com/content_CVPR_2019/html/Sun_Deep_High-Resolution_Representation_Learning_for_Human_Pose_Estimation_CVPR_2019_paper.html - README: configs/body/2d_kpt_sview_rgb_img/associative_embedding/aic/hrnet_aic.md Models: - Config: configs/body/2d_kpt_sview_rgb_img/associative_embedding/aic/hrnet_w32_aic_512x512.py - In Collection: body--2d_kpt_sview_rgb_img--associative_embedding--aic--hrnet_aic - [Associative Embedding+HRNet@AI Challenger] + In Collection: HRNet Metadata: + Architecture: &id001 + - Associative Embedding + - HRNet Training Data: AI Challenger Name: associative_embedding_hrnet_w32_aic_512x512 + README: configs/body/2d_kpt_sview_rgb_img/associative_embedding/aic/hrnet_aic.md Results: - Dataset: AI Challenger Metrics: @@ -27,11 +24,12 @@ Models: Task: Body 2D Keypoint Weights: https://download.openmmlab.com/mmpose/bottom_up/hrnet_w32_aic_512x512-77e2a98a_20210131.pth - Config: configs/body/2d_kpt_sview_rgb_img/associative_embedding/aic/hrnet_w32_aic_512x512.py - In Collection: body--2d_kpt_sview_rgb_img--associative_embedding--aic--hrnet_aic - [Associative Embedding+HRNet@AI Challenger] + In Collection: HRNet Metadata: + Architecture: *id001 Training Data: AI Challenger Name: associative_embedding_hrnet_w32_aic_512x512 + README: configs/body/2d_kpt_sview_rgb_img/associative_embedding/aic/hrnet_aic.md Results: - Dataset: AI Challenger Metrics: diff --git a/configs/body/2d_kpt_sview_rgb_img/associative_embedding/coco/higherhrnet_coco.yml b/configs/body/2d_kpt_sview_rgb_img/associative_embedding/coco/higherhrnet_coco.yml index bf31d9baec..f14f5e3d13 100644 --- a/configs/body/2d_kpt_sview_rgb_img/associative_embedding/coco/higherhrnet_coco.yml +++ b/configs/body/2d_kpt_sview_rgb_img/associative_embedding/coco/higherhrnet_coco.yml @@ -1,22 +1,19 @@ Collections: -- Metadata: - Architecture: - - Associative Embedding - - HigherHRNet - Name: body--2d_kpt_sview_rgb_img--associative_embedding--coco--higherhrnet_coco - [Associative Embedding+HigherHRNet@COCO] +- Name: HigherHRNet Paper: Title: 'HigherHRNet: Scale-Aware Representation Learning for Bottom-Up Human Pose Estimation' URL: http://openaccess.thecvf.com/content_CVPR_2020/html/Cheng_HigherHRNet_Scale-Aware_Representation_Learning_for_Bottom-Up_Human_Pose_Estimation_CVPR_2020_paper.html - README: configs/body/2d_kpt_sview_rgb_img/associative_embedding/coco/higherhrnet_coco.md Models: - Config: configs/body/2d_kpt_sview_rgb_img/associative_embedding/coco/higherhrnet_w32_coco_512x512.py - In Collection: body--2d_kpt_sview_rgb_img--associative_embedding--coco--higherhrnet_coco - [Associative Embedding+HigherHRNet@COCO] + In Collection: HigherHRNet Metadata: + Architecture: &id001 + - Associative Embedding + - HigherHRNet Training Data: COCO Name: associative_embedding_higherhrnet_w32_coco_512x512 + README: configs/body/2d_kpt_sview_rgb_img/associative_embedding/coco/higherhrnet_coco.md Results: - Dataset: COCO Metrics: @@ -28,11 +25,12 @@ Models: Task: Body 2D Keypoint Weights: https://download.openmmlab.com/mmpose/bottom_up/higher_hrnet32_coco_512x512-8ae85183_20200713.pth - Config: configs/body/2d_kpt_sview_rgb_img/associative_embedding/coco/higherhrnet_w32_coco_640x640.py - In Collection: body--2d_kpt_sview_rgb_img--associative_embedding--coco--higherhrnet_coco - [Associative Embedding+HigherHRNet@COCO] + In Collection: HigherHRNet Metadata: + Architecture: *id001 Training Data: COCO Name: associative_embedding_higherhrnet_w32_coco_640x640 + README: configs/body/2d_kpt_sview_rgb_img/associative_embedding/coco/higherhrnet_coco.md Results: - Dataset: COCO Metrics: @@ -44,11 +42,12 @@ Models: Task: Body 2D Keypoint Weights: https://download.openmmlab.com/mmpose/bottom_up/higher_hrnet32_coco_640x640-a22fe938_20200712.pth - Config: configs/body/2d_kpt_sview_rgb_img/associative_embedding/coco/higherhrnet_w48_coco_512x512.py - In Collection: body--2d_kpt_sview_rgb_img--associative_embedding--coco--higherhrnet_coco - [Associative Embedding+HigherHRNet@COCO] + In Collection: HigherHRNet Metadata: + Architecture: *id001 Training Data: COCO Name: associative_embedding_higherhrnet_w48_coco_512x512 + README: configs/body/2d_kpt_sview_rgb_img/associative_embedding/coco/higherhrnet_coco.md Results: - Dataset: COCO Metrics: @@ -60,11 +59,12 @@ Models: Task: Body 2D Keypoint Weights: https://download.openmmlab.com/mmpose/bottom_up/higher_hrnet48_coco_512x512-60fedcbc_20200712.pth - Config: configs/body/2d_kpt_sview_rgb_img/associative_embedding/coco/higherhrnet_w32_coco_512x512.py - In Collection: body--2d_kpt_sview_rgb_img--associative_embedding--coco--higherhrnet_coco - [Associative Embedding+HigherHRNet@COCO] + In Collection: HigherHRNet Metadata: + Architecture: *id001 Training Data: COCO Name: associative_embedding_higherhrnet_w32_coco_512x512 + README: configs/body/2d_kpt_sview_rgb_img/associative_embedding/coco/higherhrnet_coco.md Results: - Dataset: COCO Metrics: @@ -76,11 +76,12 @@ Models: Task: Body 2D Keypoint Weights: https://download.openmmlab.com/mmpose/bottom_up/higher_hrnet32_coco_512x512-8ae85183_20200713.pth - Config: configs/body/2d_kpt_sview_rgb_img/associative_embedding/coco/higherhrnet_w32_coco_640x640.py - In Collection: body--2d_kpt_sview_rgb_img--associative_embedding--coco--higherhrnet_coco - [Associative Embedding+HigherHRNet@COCO] + In Collection: HigherHRNet Metadata: + Architecture: *id001 Training Data: COCO Name: associative_embedding_higherhrnet_w32_coco_640x640 + README: configs/body/2d_kpt_sview_rgb_img/associative_embedding/coco/higherhrnet_coco.md Results: - Dataset: COCO Metrics: @@ -92,11 +93,12 @@ Models: Task: Body 2D Keypoint Weights: https://download.openmmlab.com/mmpose/bottom_up/higher_hrnet32_coco_640x640-a22fe938_20200712.pth - Config: configs/body/2d_kpt_sview_rgb_img/associative_embedding/coco/higherhrnet_w48_coco_512x512.py - In Collection: body--2d_kpt_sview_rgb_img--associative_embedding--coco--higherhrnet_coco - [Associative Embedding+HigherHRNet@COCO] + In Collection: HigherHRNet Metadata: + Architecture: *id001 Training Data: COCO Name: associative_embedding_higherhrnet_w48_coco_512x512 + README: configs/body/2d_kpt_sview_rgb_img/associative_embedding/coco/higherhrnet_coco.md Results: - Dataset: COCO Metrics: diff --git a/configs/body/2d_kpt_sview_rgb_img/associative_embedding/coco/higherhrnet_udp_coco.yml b/configs/body/2d_kpt_sview_rgb_img/associative_embedding/coco/higherhrnet_udp_coco.yml index 0b46544030..3d723bbe54 100644 --- a/configs/body/2d_kpt_sview_rgb_img/associative_embedding/coco/higherhrnet_udp_coco.yml +++ b/configs/body/2d_kpt_sview_rgb_img/associative_embedding/coco/higherhrnet_udp_coco.yml @@ -1,23 +1,20 @@ Collections: -- Metadata: - Architecture: - - Associative Embedding - - HigherHRNet - - UDP - Name: body--2d_kpt_sview_rgb_img--associative_embedding--coco--higherhrnet_udp_coco - [Associative Embedding+HigherHRNet+UDP@COCO] +- Name: HigherHRNet Paper: Title: 'HigherHRNet: Scale-Aware Representation Learning for Bottom-Up Human Pose Estimation' URL: http://openaccess.thecvf.com/content_CVPR_2020/html/Cheng_HigherHRNet_Scale-Aware_Representation_Learning_for_Bottom-Up_Human_Pose_Estimation_CVPR_2020_paper.html - README: configs/body/2d_kpt_sview_rgb_img/associative_embedding/coco/higherhrnet_udp_coco.md Models: - Config: configs/body/2d_kpt_sview_rgb_img/associative_embedding/coco/higherhrnet_w32_coco_512x512_udp.py - In Collection: body--2d_kpt_sview_rgb_img--associative_embedding--coco--higherhrnet_udp_coco - [Associative Embedding+HigherHRNet+UDP@COCO] + In Collection: HigherHRNet Metadata: + Architecture: &id001 + - Associative Embedding + - HigherHRNet + - UDP Training Data: COCO Name: associative_embedding_higherhrnet_w32_coco_512x512_udp + README: configs/body/2d_kpt_sview_rgb_img/associative_embedding/coco/higherhrnet_udp_coco.md Results: - Dataset: COCO Metrics: @@ -29,11 +26,12 @@ Models: Task: Body 2D Keypoint Weights: https://download.openmmlab.com/mmpose/bottom_up/higher_hrnet32_coco_512x512_udp-8cc64794_20210222.pth - Config: configs/body/2d_kpt_sview_rgb_img/associative_embedding/coco/higherhrnet_w48_coco_512x512_udp.py - In Collection: body--2d_kpt_sview_rgb_img--associative_embedding--coco--higherhrnet_udp_coco - [Associative Embedding+HigherHRNet+UDP@COCO] + In Collection: HigherHRNet Metadata: + Architecture: *id001 Training Data: COCO Name: associative_embedding_higherhrnet_w48_coco_512x512_udp + README: configs/body/2d_kpt_sview_rgb_img/associative_embedding/coco/higherhrnet_udp_coco.md Results: - Dataset: COCO Metrics: diff --git a/configs/body/2d_kpt_sview_rgb_img/associative_embedding/coco/hourglass_ae_coco.yml b/configs/body/2d_kpt_sview_rgb_img/associative_embedding/coco/hourglass_ae_coco.yml index ed5b87f844..0afed5bb2e 100644 --- a/configs/body/2d_kpt_sview_rgb_img/associative_embedding/coco/hourglass_ae_coco.yml +++ b/configs/body/2d_kpt_sview_rgb_img/associative_embedding/coco/hourglass_ae_coco.yml @@ -1,21 +1,18 @@ Collections: -- Metadata: - Architecture: - - Associative Embedding - - HourglassAENet - Name: body--2d_kpt_sview_rgb_img--associative_embedding--coco--hourglass_ae_coco - [Associative Embedding+HourglassAENet@COCO] +- Name: Associative Embedding Paper: Title: 'Associative embedding: End-to-end learning for joint detection and grouping' URL: https://arxiv.org/abs/1611.05424 - README: configs/body/2d_kpt_sview_rgb_img/associative_embedding/coco/hourglass_ae_coco.md Models: - Config: configs/body/2d_kpt_sview_rgb_img/associative_embedding/coco/hourglass_ae_coco_512x512.py - In Collection: body--2d_kpt_sview_rgb_img--associative_embedding--coco--hourglass_ae_coco - [Associative Embedding+HourglassAENet@COCO] + In Collection: Associative Embedding Metadata: + Architecture: &id001 + - Associative Embedding + - HourglassAENet Training Data: COCO Name: associative_embedding_hourglass_ae_coco_512x512 + README: configs/body/2d_kpt_sview_rgb_img/associative_embedding/coco/hourglass_ae_coco.md Results: - Dataset: COCO Metrics: @@ -27,11 +24,12 @@ Models: Task: Body 2D Keypoint Weights: https://download.openmmlab.com/mmpose/face/hourglass_ae/hourglass_ae_coco_512x512-90af499f_20210920.pth - Config: configs/body/2d_kpt_sview_rgb_img/associative_embedding/coco/hourglass_ae_coco_512x512.py - In Collection: body--2d_kpt_sview_rgb_img--associative_embedding--coco--hourglass_ae_coco - [Associative Embedding+HourglassAENet@COCO] + In Collection: Associative Embedding Metadata: + Architecture: *id001 Training Data: COCO Name: associative_embedding_hourglass_ae_coco_512x512 + README: configs/body/2d_kpt_sview_rgb_img/associative_embedding/coco/hourglass_ae_coco.md Results: - Dataset: COCO Metrics: diff --git a/configs/body/2d_kpt_sview_rgb_img/associative_embedding/coco/hrnet_coco.yml b/configs/body/2d_kpt_sview_rgb_img/associative_embedding/coco/hrnet_coco.yml index acc8d103bc..7b6071c8dd 100644 --- a/configs/body/2d_kpt_sview_rgb_img/associative_embedding/coco/hrnet_coco.yml +++ b/configs/body/2d_kpt_sview_rgb_img/associative_embedding/coco/hrnet_coco.yml @@ -1,21 +1,18 @@ Collections: -- Metadata: - Architecture: - - Associative Embedding - - HRNet - Name: body--2d_kpt_sview_rgb_img--associative_embedding--coco--hrnet_coco [Associative - Embedding+HRNet@COCO] +- Name: HRNet Paper: Title: Deep high-resolution representation learning for human pose estimation URL: http://openaccess.thecvf.com/content_CVPR_2019/html/Sun_Deep_High-Resolution_Representation_Learning_for_Human_Pose_Estimation_CVPR_2019_paper.html - README: configs/body/2d_kpt_sview_rgb_img/associative_embedding/coco/hrnet_coco.md Models: - Config: configs/body/2d_kpt_sview_rgb_img/associative_embedding/coco/hrnet_w32_coco_512x512.py - In Collection: body--2d_kpt_sview_rgb_img--associative_embedding--coco--hrnet_coco - [Associative Embedding+HRNet@COCO] + In Collection: HRNet Metadata: + Architecture: &id001 + - Associative Embedding + - HRNet Training Data: COCO Name: associative_embedding_hrnet_w32_coco_512x512 + README: configs/body/2d_kpt_sview_rgb_img/associative_embedding/coco/hrnet_coco.md Results: - Dataset: COCO Metrics: @@ -27,11 +24,12 @@ Models: Task: Body 2D Keypoint Weights: https://download.openmmlab.com/mmpose/bottom_up/hrnet_w32_coco_512x512-bcb8c247_20200816.pth - Config: configs/body/2d_kpt_sview_rgb_img/associative_embedding/coco/hrnet_w48_coco_512x512.py - In Collection: body--2d_kpt_sview_rgb_img--associative_embedding--coco--hrnet_coco - [Associative Embedding+HRNet@COCO] + In Collection: HRNet Metadata: + Architecture: *id001 Training Data: COCO Name: associative_embedding_hrnet_w48_coco_512x512 + README: configs/body/2d_kpt_sview_rgb_img/associative_embedding/coco/hrnet_coco.md Results: - Dataset: COCO Metrics: @@ -43,11 +41,12 @@ Models: Task: Body 2D Keypoint Weights: https://download.openmmlab.com/mmpose/bottom_up/hrnet_w48_coco_512x512-cf72fcdf_20200816.pth - Config: configs/body/2d_kpt_sview_rgb_img/associative_embedding/coco/hrnet_w32_coco_512x512.py - In Collection: body--2d_kpt_sview_rgb_img--associative_embedding--coco--hrnet_coco - [Associative Embedding+HRNet@COCO] + In Collection: HRNet Metadata: + Architecture: *id001 Training Data: COCO Name: associative_embedding_hrnet_w32_coco_512x512 + README: configs/body/2d_kpt_sview_rgb_img/associative_embedding/coco/hrnet_coco.md Results: - Dataset: COCO Metrics: @@ -59,11 +58,12 @@ Models: Task: Body 2D Keypoint Weights: https://download.openmmlab.com/mmpose/bottom_up/hrnet_w32_coco_512x512-bcb8c247_20200816.pth - Config: configs/body/2d_kpt_sview_rgb_img/associative_embedding/coco/hrnet_w48_coco_512x512.py - In Collection: body--2d_kpt_sview_rgb_img--associative_embedding--coco--hrnet_coco - [Associative Embedding+HRNet@COCO] + In Collection: HRNet Metadata: + Architecture: *id001 Training Data: COCO Name: associative_embedding_hrnet_w48_coco_512x512 + README: configs/body/2d_kpt_sview_rgb_img/associative_embedding/coco/hrnet_coco.md Results: - Dataset: COCO Metrics: diff --git a/configs/body/2d_kpt_sview_rgb_img/associative_embedding/coco/hrnet_udp_coco.yml b/configs/body/2d_kpt_sview_rgb_img/associative_embedding/coco/hrnet_udp_coco.yml index dbac3bb4f7..741d39bb74 100644 --- a/configs/body/2d_kpt_sview_rgb_img/associative_embedding/coco/hrnet_udp_coco.yml +++ b/configs/body/2d_kpt_sview_rgb_img/associative_embedding/coco/hrnet_udp_coco.yml @@ -1,23 +1,20 @@ Collections: -- Metadata: - Architecture: - - Associative Embedding - - HRNet - - UDP - Name: body--2d_kpt_sview_rgb_img--associative_embedding--coco--hrnet_udp_coco [Associative - Embedding+HRNet+UDP@COCO] +- Name: UDP Paper: Title: 'The Devil Is in the Details: Delving Into Unbiased Data Processing for Human Pose Estimation' URL: http://openaccess.thecvf.com/content_CVPR_2020/html/Huang_The_Devil_Is_in_the_Details_Delving_Into_Unbiased_Data_CVPR_2020_paper.html - README: configs/body/2d_kpt_sview_rgb_img/associative_embedding/coco/hrnet_udp_coco.md Models: - Config: configs/body/2d_kpt_sview_rgb_img/associative_embedding/coco/hrnet_w32_coco_512x512_udp.py - In Collection: body--2d_kpt_sview_rgb_img--associative_embedding--coco--hrnet_udp_coco - [Associative Embedding+HRNet+UDP@COCO] + In Collection: UDP Metadata: + Architecture: &id001 + - Associative Embedding + - HRNet + - UDP Training Data: COCO Name: associative_embedding_hrnet_w32_coco_512x512_udp + README: configs/body/2d_kpt_sview_rgb_img/associative_embedding/coco/hrnet_udp_coco.md Results: - Dataset: COCO Metrics: @@ -29,11 +26,12 @@ Models: Task: Body 2D Keypoint Weights: https://download.openmmlab.com/mmpose/bottom_up/hrnet_w32_coco_512x512_udp-91663bf9_20210220.pth - Config: configs/body/2d_kpt_sview_rgb_img/associative_embedding/coco/hrnet_w48_coco_512x512_udp.py - In Collection: body--2d_kpt_sview_rgb_img--associative_embedding--coco--hrnet_udp_coco - [Associative Embedding+HRNet+UDP@COCO] + In Collection: UDP Metadata: + Architecture: *id001 Training Data: COCO Name: associative_embedding_hrnet_w48_coco_512x512_udp + README: configs/body/2d_kpt_sview_rgb_img/associative_embedding/coco/hrnet_udp_coco.md Results: - Dataset: COCO Metrics: diff --git a/configs/body/2d_kpt_sview_rgb_img/associative_embedding/coco/mobilenetv2_coco.yml b/configs/body/2d_kpt_sview_rgb_img/associative_embedding/coco/mobilenetv2_coco.yml index cbed11cd4c..00d31e3652 100644 --- a/configs/body/2d_kpt_sview_rgb_img/associative_embedding/coco/mobilenetv2_coco.yml +++ b/configs/body/2d_kpt_sview_rgb_img/associative_embedding/coco/mobilenetv2_coco.yml @@ -1,21 +1,18 @@ Collections: -- Metadata: - Architecture: - - Associative Embedding - - MobilenetV2 - Name: body--2d_kpt_sview_rgb_img--associative_embedding--coco--mobilenetv2_coco - [Associative Embedding+MobilenetV2@COCO] +- Name: MobilenetV2 Paper: Title: 'Mobilenetv2: Inverted residuals and linear bottlenecks' URL: http://openaccess.thecvf.com/content_cvpr_2018/html/Sandler_MobileNetV2_Inverted_Residuals_CVPR_2018_paper.html - README: configs/body/2d_kpt_sview_rgb_img/associative_embedding/coco/mobilenetv2_coco.md Models: - Config: configs/body/2d_kpt_sview_rgb_img/associative_embedding/coco/mobilenetv2_coco_512x512.py - In Collection: body--2d_kpt_sview_rgb_img--associative_embedding--coco--mobilenetv2_coco - [Associative Embedding+MobilenetV2@COCO] + In Collection: MobilenetV2 Metadata: + Architecture: &id001 + - Associative Embedding + - MobilenetV2 Training Data: COCO Name: associative_embedding_mobilenetv2_coco_512x512 + README: configs/body/2d_kpt_sview_rgb_img/associative_embedding/coco/mobilenetv2_coco.md Results: - Dataset: COCO Metrics: @@ -27,11 +24,12 @@ Models: Task: Body 2D Keypoint Weights: https://download.openmmlab.com/mmpose/bottom_up/mobilenetv2_coco_512x512-4d96e309_20200816.pth - Config: configs/body/2d_kpt_sview_rgb_img/associative_embedding/coco/mobilenetv2_coco_512x512.py - In Collection: body--2d_kpt_sview_rgb_img--associative_embedding--coco--mobilenetv2_coco - [Associative Embedding+MobilenetV2@COCO] + In Collection: MobilenetV2 Metadata: + Architecture: *id001 Training Data: COCO Name: associative_embedding_mobilenetv2_coco_512x512 + README: configs/body/2d_kpt_sview_rgb_img/associative_embedding/coco/mobilenetv2_coco.md Results: - Dataset: COCO Metrics: diff --git a/configs/body/2d_kpt_sview_rgb_img/associative_embedding/coco/resnet_coco.yml b/configs/body/2d_kpt_sview_rgb_img/associative_embedding/coco/resnet_coco.yml index e34fa3bd7a..a849bd6723 100644 --- a/configs/body/2d_kpt_sview_rgb_img/associative_embedding/coco/resnet_coco.yml +++ b/configs/body/2d_kpt_sview_rgb_img/associative_embedding/coco/resnet_coco.yml @@ -1,21 +1,18 @@ Collections: -- Metadata: - Architecture: - - Associative Embedding - - ResNet - Name: body--2d_kpt_sview_rgb_img--associative_embedding--coco--resnet_coco [Associative - Embedding+ResNet@COCO] +- Name: Associative Embedding Paper: Title: 'Associative embedding: End-to-end learning for joint detection and grouping' URL: https://arxiv.org/abs/1611.05424 - README: configs/body/2d_kpt_sview_rgb_img/associative_embedding/coco/resnet_coco.md Models: - Config: configs/body/2d_kpt_sview_rgb_img/associative_embedding/coco/res50_coco_512x512.py - In Collection: body--2d_kpt_sview_rgb_img--associative_embedding--coco--resnet_coco - [Associative Embedding+ResNet@COCO] + In Collection: Associative Embedding Metadata: + Architecture: &id001 + - Associative Embedding + - ResNet Training Data: COCO Name: associative_embedding_res50_coco_512x512 + README: configs/body/2d_kpt_sview_rgb_img/associative_embedding/coco/resnet_coco.md Results: - Dataset: COCO Metrics: @@ -27,11 +24,12 @@ Models: Task: Body 2D Keypoint Weights: https://download.openmmlab.com/mmpose/bottom_up/res50_coco_512x512-5521bead_20200816.pth - Config: configs/body/2d_kpt_sview_rgb_img/associative_embedding/coco/res50_coco_640x640.py - In Collection: body--2d_kpt_sview_rgb_img--associative_embedding--coco--resnet_coco - [Associative Embedding+ResNet@COCO] + In Collection: Associative Embedding Metadata: + Architecture: *id001 Training Data: COCO Name: associative_embedding_res50_coco_640x640 + README: configs/body/2d_kpt_sview_rgb_img/associative_embedding/coco/resnet_coco.md Results: - Dataset: COCO Metrics: @@ -43,11 +41,12 @@ Models: Task: Body 2D Keypoint Weights: https://download.openmmlab.com/mmpose/bottom_up/res50_coco_640x640-2046f9cb_20200822.pth - Config: configs/body/2d_kpt_sview_rgb_img/associative_embedding/coco/res101_coco_512x512.py - In Collection: body--2d_kpt_sview_rgb_img--associative_embedding--coco--resnet_coco - [Associative Embedding+ResNet@COCO] + In Collection: Associative Embedding Metadata: + Architecture: *id001 Training Data: COCO Name: associative_embedding_res101_coco_512x512 + README: configs/body/2d_kpt_sview_rgb_img/associative_embedding/coco/resnet_coco.md Results: - Dataset: COCO Metrics: @@ -59,11 +58,12 @@ Models: Task: Body 2D Keypoint Weights: https://download.openmmlab.com/mmpose/bottom_up/res101_coco_512x512-e0c95157_20200816.pth - Config: configs/body/2d_kpt_sview_rgb_img/associative_embedding/coco/res152_coco_512x512.py - In Collection: body--2d_kpt_sview_rgb_img--associative_embedding--coco--resnet_coco - [Associative Embedding+ResNet@COCO] + In Collection: Associative Embedding Metadata: + Architecture: *id001 Training Data: COCO Name: associative_embedding_res152_coco_512x512 + README: configs/body/2d_kpt_sview_rgb_img/associative_embedding/coco/resnet_coco.md Results: - Dataset: COCO Metrics: @@ -75,11 +75,12 @@ Models: Task: Body 2D Keypoint Weights: https://download.openmmlab.com/mmpose/bottom_up/res152_coco_512x512-364eb38d_20200822.pth - Config: configs/body/2d_kpt_sview_rgb_img/associative_embedding/coco/res50_coco_512x512.py - In Collection: body--2d_kpt_sview_rgb_img--associative_embedding--coco--resnet_coco - [Associative Embedding+ResNet@COCO] + In Collection: Associative Embedding Metadata: + Architecture: *id001 Training Data: COCO Name: associative_embedding_res50_coco_512x512 + README: configs/body/2d_kpt_sview_rgb_img/associative_embedding/coco/resnet_coco.md Results: - Dataset: COCO Metrics: @@ -91,11 +92,12 @@ Models: Task: Body 2D Keypoint Weights: https://download.openmmlab.com/mmpose/bottom_up/res50_coco_512x512-5521bead_20200816.pth - Config: configs/body/2d_kpt_sview_rgb_img/associative_embedding/coco/res50_coco_640x640.py - In Collection: body--2d_kpt_sview_rgb_img--associative_embedding--coco--resnet_coco - [Associative Embedding+ResNet@COCO] + In Collection: Associative Embedding Metadata: + Architecture: *id001 Training Data: COCO Name: associative_embedding_res50_coco_640x640 + README: configs/body/2d_kpt_sview_rgb_img/associative_embedding/coco/resnet_coco.md Results: - Dataset: COCO Metrics: @@ -107,11 +109,12 @@ Models: Task: Body 2D Keypoint Weights: https://download.openmmlab.com/mmpose/bottom_up/res50_coco_640x640-2046f9cb_20200822.pth - Config: configs/body/2d_kpt_sview_rgb_img/associative_embedding/coco/res101_coco_512x512.py - In Collection: body--2d_kpt_sview_rgb_img--associative_embedding--coco--resnet_coco - [Associative Embedding+ResNet@COCO] + In Collection: Associative Embedding Metadata: + Architecture: *id001 Training Data: COCO Name: associative_embedding_res101_coco_512x512 + README: configs/body/2d_kpt_sview_rgb_img/associative_embedding/coco/resnet_coco.md Results: - Dataset: COCO Metrics: @@ -123,11 +126,12 @@ Models: Task: Body 2D Keypoint Weights: https://download.openmmlab.com/mmpose/bottom_up/res101_coco_512x512-e0c95157_20200816.pth - Config: configs/body/2d_kpt_sview_rgb_img/associative_embedding/coco/res152_coco_512x512.py - In Collection: body--2d_kpt_sview_rgb_img--associative_embedding--coco--resnet_coco - [Associative Embedding+ResNet@COCO] + In Collection: Associative Embedding Metadata: + Architecture: *id001 Training Data: COCO Name: associative_embedding_res152_coco_512x512 + README: configs/body/2d_kpt_sview_rgb_img/associative_embedding/coco/resnet_coco.md Results: - Dataset: COCO Metrics: diff --git a/configs/body/2d_kpt_sview_rgb_img/associative_embedding/crowdpose/higherhrnet_crowdpose.yml b/configs/body/2d_kpt_sview_rgb_img/associative_embedding/crowdpose/higherhrnet_crowdpose.yml index 7e2fdbffb8..e080892330 100644 --- a/configs/body/2d_kpt_sview_rgb_img/associative_embedding/crowdpose/higherhrnet_crowdpose.yml +++ b/configs/body/2d_kpt_sview_rgb_img/associative_embedding/crowdpose/higherhrnet_crowdpose.yml @@ -1,22 +1,19 @@ Collections: -- Metadata: - Architecture: - - Associative Embedding - - HigherHRNet - Name: body--2d_kpt_sview_rgb_img--associative_embedding--crowdpose--higherhrnet_crowdpose - [Associative Embedding+HigherHRNet@CrowdPose] +- Name: HigherHRNet Paper: Title: 'HigherHRNet: Scale-Aware Representation Learning for Bottom-Up Human Pose Estimation' URL: http://openaccess.thecvf.com/content_CVPR_2020/html/Cheng_HigherHRNet_Scale-Aware_Representation_Learning_for_Bottom-Up_Human_Pose_Estimation_CVPR_2020_paper.html - README: configs/body/2d_kpt_sview_rgb_img/associative_embedding/crowdpose/higherhrnet_crowdpose.md Models: - Config: configs/body/2d_kpt_sview_rgb_img/associative_embedding/crowdpose/higherhrnet_w32_crowdpose_512x512.py - In Collection: body--2d_kpt_sview_rgb_img--associative_embedding--crowdpose--higherhrnet_crowdpose - [Associative Embedding+HigherHRNet@CrowdPose] + In Collection: HigherHRNet Metadata: + Architecture: &id001 + - Associative Embedding + - HigherHRNet Training Data: CrowdPose Name: associative_embedding_higherhrnet_w32_crowdpose_512x512 + README: configs/body/2d_kpt_sview_rgb_img/associative_embedding/crowdpose/higherhrnet_crowdpose.md Results: - Dataset: CrowdPose Metrics: @@ -29,11 +26,12 @@ Models: Task: Body 2D Keypoint Weights: https://download.openmmlab.com/mmpose/bottom_up/higher_hrnet32_crowdpose_512x512-1aa4a132_20201017.pth - Config: configs/body/2d_kpt_sview_rgb_img/associative_embedding/crowdpose/higherhrnet_w32_crowdpose_512x512.py - In Collection: body--2d_kpt_sview_rgb_img--associative_embedding--crowdpose--higherhrnet_crowdpose - [Associative Embedding+HigherHRNet@CrowdPose] + In Collection: HigherHRNet Metadata: + Architecture: *id001 Training Data: CrowdPose Name: associative_embedding_higherhrnet_w32_crowdpose_512x512 + README: configs/body/2d_kpt_sview_rgb_img/associative_embedding/crowdpose/higherhrnet_crowdpose.md Results: - Dataset: CrowdPose Metrics: diff --git a/configs/body/2d_kpt_sview_rgb_img/associative_embedding/mhp/hrnet_mhp.yml b/configs/body/2d_kpt_sview_rgb_img/associative_embedding/mhp/hrnet_mhp.yml index d7f8192f39..247d81775b 100644 --- a/configs/body/2d_kpt_sview_rgb_img/associative_embedding/mhp/hrnet_mhp.yml +++ b/configs/body/2d_kpt_sview_rgb_img/associative_embedding/mhp/hrnet_mhp.yml @@ -1,21 +1,18 @@ Collections: -- Metadata: - Architecture: - - Associative Embedding - - HRNet - Name: body--2d_kpt_sview_rgb_img--associative_embedding--mhp--hrnet_mhp [Associative - Embedding+HRNet@MHP] +- Name: HRNet Paper: Title: Deep high-resolution representation learning for human pose estimation URL: http://openaccess.thecvf.com/content_CVPR_2019/html/Sun_Deep_High-Resolution_Representation_Learning_for_Human_Pose_Estimation_CVPR_2019_paper.html - README: configs/body/2d_kpt_sview_rgb_img/associative_embedding/mhp/hrnet_mhp.md Models: - Config: configs/body/2d_kpt_sview_rgb_img/associative_embedding/coco/hrnet_w48_mhp_512x512.py - In Collection: body--2d_kpt_sview_rgb_img--associative_embedding--mhp--hrnet_mhp - [Associative Embedding+HRNet@MHP] + In Collection: HRNet Metadata: + Architecture: &id001 + - Associative Embedding + - HRNet Training Data: MHP Name: associative_embedding_hrnet_w48_mhp_512x512 + README: configs/body/2d_kpt_sview_rgb_img/associative_embedding/mhp/hrnet_mhp.md Results: - Dataset: MHP Metrics: @@ -27,11 +24,12 @@ Models: Task: Body 2D Keypoint Weights: https://download.openmmlab.com/mmpose/bottom_up/hrnet_w48_mhp_512x512-85a6ab6f_20201229.pth - Config: configs/body/2d_kpt_sview_rgb_img/associative_embedding/coco/hrnet_w48_mhp_512x512.py - In Collection: body--2d_kpt_sview_rgb_img--associative_embedding--mhp--hrnet_mhp - [Associative Embedding+HRNet@MHP] + In Collection: HRNet Metadata: + Architecture: *id001 Training Data: MHP Name: associative_embedding_hrnet_w48_mhp_512x512 + README: configs/body/2d_kpt_sview_rgb_img/associative_embedding/mhp/hrnet_mhp.md Results: - Dataset: MHP Metrics: diff --git a/configs/body/2d_kpt_sview_rgb_img/deeppose/coco/resnet_coco.yml b/configs/body/2d_kpt_sview_rgb_img/deeppose/coco/resnet_coco.yml index 86dbf492b0..9ec1890ba8 100644 --- a/configs/body/2d_kpt_sview_rgb_img/deeppose/coco/resnet_coco.yml +++ b/configs/body/2d_kpt_sview_rgb_img/deeppose/coco/resnet_coco.yml @@ -1,19 +1,18 @@ Collections: -- Metadata: - Architecture: - - DeepPose - - ResNet - Name: body--2d_kpt_sview_rgb_img--deeppose--coco--resnet_coco [DeepPose+ResNet@COCO] +- Name: ResNet Paper: Title: Deep residual learning for image recognition URL: http://openaccess.thecvf.com/content_cvpr_2016/html/He_Deep_Residual_Learning_CVPR_2016_paper.html - README: configs/body/2d_kpt_sview_rgb_img/deeppose/coco/resnet_coco.md Models: - Config: configs/body/2d_kpt_sview_rgb_img/deeppose/coco/res50_coco_256x192.py - In Collection: body--2d_kpt_sview_rgb_img--deeppose--coco--resnet_coco [DeepPose+ResNet@COCO] + In Collection: ResNet Metadata: + Architecture: &id001 + - DeepPose + - ResNet Training Data: COCO Name: deeppose_res50_coco_256x192 + README: configs/body/2d_kpt_sview_rgb_img/deeppose/coco/resnet_coco.md Results: - Dataset: COCO Metrics: @@ -25,10 +24,12 @@ Models: Task: Body 2D Keypoint Weights: https://download.openmmlab.com/mmpose/top_down/deeppose/deeppose_res50_coco_256x192-f6de6c0e_20210205.pth - Config: configs/body/2d_kpt_sview_rgb_img/deeppose/coco/res101_coco_256x192.py - In Collection: body--2d_kpt_sview_rgb_img--deeppose--coco--resnet_coco [DeepPose+ResNet@COCO] + In Collection: ResNet Metadata: + Architecture: *id001 Training Data: COCO Name: deeppose_res101_coco_256x192 + README: configs/body/2d_kpt_sview_rgb_img/deeppose/coco/resnet_coco.md Results: - Dataset: COCO Metrics: @@ -40,10 +41,12 @@ Models: Task: Body 2D Keypoint Weights: https://download.openmmlab.com/mmpose/top_down/deeppose/deeppose_res101_coco_256x192-2f247111_20210205.pth - Config: configs/body/2d_kpt_sview_rgb_img/deeppose/coco/res152_coco_256x192.py - In Collection: body--2d_kpt_sview_rgb_img--deeppose--coco--resnet_coco [DeepPose+ResNet@COCO] + In Collection: ResNet Metadata: + Architecture: *id001 Training Data: COCO Name: deeppose_res152_coco_256x192 + README: configs/body/2d_kpt_sview_rgb_img/deeppose/coco/resnet_coco.md Results: - Dataset: COCO Metrics: diff --git a/configs/body/2d_kpt_sview_rgb_img/deeppose/mpii/resnet_mpii.yml b/configs/body/2d_kpt_sview_rgb_img/deeppose/mpii/resnet_mpii.yml index 0e1463efe5..46bc76c4bc 100644 --- a/configs/body/2d_kpt_sview_rgb_img/deeppose/mpii/resnet_mpii.yml +++ b/configs/body/2d_kpt_sview_rgb_img/deeppose/mpii/resnet_mpii.yml @@ -1,19 +1,18 @@ Collections: -- Metadata: - Architecture: - - DeepPose - - ResNet - Name: body--2d_kpt_sview_rgb_img--deeppose--mpii--resnet_mpii [DeepPose+ResNet@MPII] +- Name: ResNet Paper: Title: Deep residual learning for image recognition URL: http://openaccess.thecvf.com/content_cvpr_2016/html/He_Deep_Residual_Learning_CVPR_2016_paper.html - README: configs/body/2d_kpt_sview_rgb_img/deeppose/mpii/resnet_mpii.md Models: - Config: configs/body/2d_kpt_sview_rgb_img/deeppose/mpii/res50_mpii_256x256.py - In Collection: body--2d_kpt_sview_rgb_img--deeppose--mpii--resnet_mpii [DeepPose+ResNet@MPII] + In Collection: ResNet Metadata: + Architecture: &id001 + - DeepPose + - ResNet Training Data: MPII Name: deeppose_res50_mpii_256x256 + README: configs/body/2d_kpt_sview_rgb_img/deeppose/mpii/resnet_mpii.md Results: - Dataset: MPII Metrics: @@ -22,10 +21,12 @@ Models: Task: Body 2D Keypoint Weights: https://download.openmmlab.com/mmpose/top_down/deeppose/deeppose_res50_mpii_256x256-c63cd0b6_20210203.pth - Config: configs/body/2d_kpt_sview_rgb_img/deeppose/mpii/res101_mpii_256x256.py - In Collection: body--2d_kpt_sview_rgb_img--deeppose--mpii--resnet_mpii [DeepPose+ResNet@MPII] + In Collection: ResNet Metadata: + Architecture: *id001 Training Data: MPII Name: deeppose_res101_mpii_256x256 + README: configs/body/2d_kpt_sview_rgb_img/deeppose/mpii/resnet_mpii.md Results: - Dataset: MPII Metrics: @@ -34,10 +35,12 @@ Models: Task: Body 2D Keypoint Weights: https://download.openmmlab.com/mmpose/top_down/deeppose/deeppose_res101_mpii_256x256-87516a90_20210205.pth - Config: configs/body/2d_kpt_sview_rgb_img/deeppose/mpii/res152_mpii_256x256.py - In Collection: body--2d_kpt_sview_rgb_img--deeppose--mpii--resnet_mpii [DeepPose+ResNet@MPII] + In Collection: ResNet Metadata: + Architecture: *id001 Training Data: MPII Name: deeppose_res152_mpii_256x256 + README: configs/body/2d_kpt_sview_rgb_img/deeppose/mpii/resnet_mpii.md Results: - Dataset: MPII Metrics: diff --git a/configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/aic/hrnet_aic.yml b/configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/aic/hrnet_aic.yml index 591c86a2df..be849cef14 100644 --- a/configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/aic/hrnet_aic.yml +++ b/configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/aic/hrnet_aic.yml @@ -1,19 +1,17 @@ Collections: -- Metadata: - Architecture: - - HRNet - Name: body--2d_kpt_sview_rgb_img--topdown_heatmap--aic--hrnet_aic [HRNet@AI Challenger] +- Name: HRNet Paper: Title: Deep high-resolution representation learning for human pose estimation URL: http://openaccess.thecvf.com/content_CVPR_2019/html/Sun_Deep_High-Resolution_Representation_Learning_for_Human_Pose_Estimation_CVPR_2019_paper.html - README: configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/aic/hrnet_aic.md Models: - Config: configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/aic/hrnet_w32_aic_256x192.py - In Collection: body--2d_kpt_sview_rgb_img--topdown_heatmap--aic--hrnet_aic [HRNet@AI - Challenger] + In Collection: HRNet Metadata: + Architecture: + - HRNet Training Data: AI Challenger Name: topdown_heatmap_hrnet_w32_aic_256x192 + README: configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/aic/hrnet_aic.md Results: - Dataset: AI Challenger Metrics: diff --git a/configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/aic/resnet_aic.yml b/configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/aic/resnet_aic.yml index ce37f22e24..184140f7e3 100644 --- a/configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/aic/resnet_aic.yml +++ b/configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/aic/resnet_aic.yml @@ -1,21 +1,18 @@ Collections: -- Metadata: - Architecture: - - SimpleBaseline2D - - ResNet - Name: body--2d_kpt_sview_rgb_img--topdown_heatmap--aic--resnet_aic [SimpleBaseline2D+ResNet@AI - Challenger] +- Name: SimpleBaseline2D Paper: Title: Simple baselines for human pose estimation and tracking URL: http://openaccess.thecvf.com/content_ECCV_2018/html/Bin_Xiao_Simple_Baselines_for_ECCV_2018_paper.html - README: configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/aic/resnet_aic.md Models: - Config: configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/aic/res101_aic_256x192.py - In Collection: body--2d_kpt_sview_rgb_img--topdown_heatmap--aic--resnet_aic [SimpleBaseline2D+ResNet@AI - Challenger] + In Collection: SimpleBaseline2D Metadata: + Architecture: + - SimpleBaseline2D + - ResNet Training Data: AI Challenger Name: topdown_heatmap_res101_aic_256x192 + README: configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/aic/resnet_aic.md Results: - Dataset: AI Challenger Metrics: diff --git a/configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/coco/alexnet_coco.yml b/configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/coco/alexnet_coco.yml index 13641a4c31..f92c37be0e 100644 --- a/configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/coco/alexnet_coco.yml +++ b/configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/coco/alexnet_coco.yml @@ -1,18 +1,17 @@ Collections: -- Metadata: - Architecture: - - AlexNet - Name: body--2d_kpt_sview_rgb_img--topdown_heatmap--coco--alexnet_coco [AlexNet@COCO] +- Name: AlexNet Paper: Title: Imagenet classification with deep convolutional neural networks URL: https://proceedings.neurips.cc/paper/4824-imagenet-classification-with-deep-convolutional-neural-networks.pdf - README: configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/coco/alexnet_coco.md Models: - Config: configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/coco/alexnet_coco_256x192.py - In Collection: body--2d_kpt_sview_rgb_img--topdown_heatmap--coco--alexnet_coco [AlexNet@COCO] + In Collection: AlexNet Metadata: + Architecture: + - AlexNet Training Data: COCO Name: topdown_heatmap_alexnet_coco_256x192 + README: configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/coco/alexnet_coco.md Results: - Dataset: COCO Metrics: diff --git a/configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/coco/cpm_coco.yml b/configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/coco/cpm_coco.yml index 300ae7c5ff..054b896fcb 100644 --- a/configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/coco/cpm_coco.yml +++ b/configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/coco/cpm_coco.yml @@ -1,18 +1,17 @@ Collections: -- Metadata: - Architecture: - - CPM - Name: body--2d_kpt_sview_rgb_img--topdown_heatmap--coco--cpm_coco [CPM@COCO] +- Name: CPM Paper: Title: Convolutional pose machines URL: http://openaccess.thecvf.com/content_cvpr_2016/html/Wei_Convolutional_Pose_Machines_CVPR_2016_paper.html - README: configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/coco/cpm_coco.md Models: - Config: configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/coco/cpm_coco_256x192.py - In Collection: body--2d_kpt_sview_rgb_img--topdown_heatmap--coco--cpm_coco [CPM@COCO] + In Collection: CPM Metadata: + Architecture: &id001 + - CPM Training Data: COCO Name: topdown_heatmap_cpm_coco_256x192 + README: configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/coco/cpm_coco.md Results: - Dataset: COCO Metrics: @@ -24,10 +23,12 @@ Models: Task: Body 2D Keypoint Weights: https://download.openmmlab.com/mmpose/top_down/cpm/cpm_coco_256x192-aa4ba095_20200817.pth - Config: configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/coco/cpm_coco_384x288.py - In Collection: body--2d_kpt_sview_rgb_img--topdown_heatmap--coco--cpm_coco [CPM@COCO] + In Collection: CPM Metadata: + Architecture: *id001 Training Data: COCO Name: topdown_heatmap_cpm_coco_384x288 + README: configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/coco/cpm_coco.md Results: - Dataset: COCO Metrics: diff --git a/configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/coco/hourglass_coco.yml b/configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/coco/hourglass_coco.yml index 39893f507e..364e84bf4a 100644 --- a/configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/coco/hourglass_coco.yml +++ b/configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/coco/hourglass_coco.yml @@ -1,19 +1,17 @@ Collections: -- Metadata: - Architecture: - - Hourglass - Name: body--2d_kpt_sview_rgb_img--topdown_heatmap--coco--hourglass_coco [Hourglass@COCO] +- Name: Hourglass Paper: Title: Stacked hourglass networks for human pose estimation URL: https://link.springer.com/chapter/10.1007/978-3-319-46484-8_29 - README: configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/coco/hourglass_coco.md Models: - Config: configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/coco/hourglass52_coco_256x256.py - In Collection: body--2d_kpt_sview_rgb_img--topdown_heatmap--coco--hourglass_coco - [Hourglass@COCO] + In Collection: Hourglass Metadata: + Architecture: &id001 + - Hourglass Training Data: COCO Name: topdown_heatmap_hourglass52_coco_256x256 + README: configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/coco/hourglass_coco.md Results: - Dataset: COCO Metrics: @@ -25,11 +23,12 @@ Models: Task: Body 2D Keypoint Weights: https://download.openmmlab.com/mmpose/top_down/hourglass/hourglass52_coco_256x256-4ec713ba_20200709.pth - Config: configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/coco/hourglass52_coco_384x384.py - In Collection: body--2d_kpt_sview_rgb_img--topdown_heatmap--coco--hourglass_coco - [Hourglass@COCO] + In Collection: Hourglass Metadata: + Architecture: *id001 Training Data: COCO Name: topdown_heatmap_hourglass52_coco_384x384 + README: configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/coco/hourglass_coco.md Results: - Dataset: COCO Metrics: diff --git a/configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/coco/hrnet_augmentation_coco.yml b/configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/coco/hrnet_augmentation_coco.yml index 8b01518ef2..8ba11bcb8a 100644 --- a/configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/coco/hrnet_augmentation_coco.yml +++ b/configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/coco/hrnet_augmentation_coco.yml @@ -1,20 +1,17 @@ Collections: -- Metadata: - Architecture: - - HRNet - Name: body--2d_kpt_sview_rgb_img--topdown_heatmap--coco--hrnet_augmentation_coco - [HRNet@COCO] +- Name: Albumentations Paper: Title: 'Albumentations: fast and flexible image augmentations' URL: https://www.mdpi.com/649002 - README: configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/coco/hrnet_augmentation_coco.md Models: - Config: configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/coco/hrnet_w32_coco_256x192_coarsedropout.py - In Collection: body--2d_kpt_sview_rgb_img--topdown_heatmap--coco--hrnet_augmentation_coco - [HRNet@COCO] + In Collection: Albumentations Metadata: + Architecture: &id001 + - HRNet Training Data: COCO Name: topdown_heatmap_hrnet_w32_coco_256x192_coarsedropout + README: configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/coco/hrnet_augmentation_coco.md Results: - Dataset: COCO Metrics: @@ -26,11 +23,12 @@ Models: Task: Body 2D Keypoint Weights: https://download.openmmlab.com/mmpose/top_down/augmentation/hrnet_w32_coco_256x192_coarsedropout-0f16a0ce_20210320.pth - Config: configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/coco/hrnet_w32_coco_256x192_gridmask.py - In Collection: body--2d_kpt_sview_rgb_img--topdown_heatmap--coco--hrnet_augmentation_coco - [HRNet@COCO] + In Collection: Albumentations Metadata: + Architecture: *id001 Training Data: COCO Name: topdown_heatmap_hrnet_w32_coco_256x192_gridmask + README: configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/coco/hrnet_augmentation_coco.md Results: - Dataset: COCO Metrics: @@ -42,11 +40,12 @@ Models: Task: Body 2D Keypoint Weights: https://download.openmmlab.com/mmpose/top_down/augmentation/hrnet_w32_coco_256x192_gridmask-868180df_20210320.pth - Config: configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/coco/hrnet_w32_coco_256x192_photometric.py - In Collection: body--2d_kpt_sview_rgb_img--topdown_heatmap--coco--hrnet_augmentation_coco - [HRNet@COCO] + In Collection: Albumentations Metadata: + Architecture: *id001 Training Data: COCO Name: topdown_heatmap_hrnet_w32_coco_256x192_photometric + README: configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/coco/hrnet_augmentation_coco.md Results: - Dataset: COCO Metrics: diff --git a/configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/coco/hrnet_coco.yml b/configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/coco/hrnet_coco.yml index 0c9695ab07..074f90b81b 100644 --- a/configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/coco/hrnet_coco.yml +++ b/configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/coco/hrnet_coco.yml @@ -1,18 +1,17 @@ Collections: -- Metadata: - Architecture: - - HRNet - Name: body--2d_kpt_sview_rgb_img--topdown_heatmap--coco--hrnet_coco [HRNet@COCO] +- Name: HRNet Paper: Title: Deep high-resolution representation learning for human pose estimation URL: http://openaccess.thecvf.com/content_CVPR_2019/html/Sun_Deep_High-Resolution_Representation_Learning_for_Human_Pose_Estimation_CVPR_2019_paper.html - README: configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/coco/hrnet_coco.md Models: - Config: configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/coco/hrnet_w32_coco_256x192.py - In Collection: body--2d_kpt_sview_rgb_img--topdown_heatmap--coco--hrnet_coco [HRNet@COCO] + In Collection: HRNet Metadata: + Architecture: &id001 + - HRNet Training Data: COCO Name: topdown_heatmap_hrnet_w32_coco_256x192 + README: configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/coco/hrnet_coco.md Results: - Dataset: COCO Metrics: @@ -24,10 +23,12 @@ Models: Task: Body 2D Keypoint Weights: https://download.openmmlab.com/mmpose/top_down/hrnet/hrnet_w32_coco_256x192-c78dce93_20200708.pth - Config: configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/coco/hrnet_w32_coco_384x288.py - In Collection: body--2d_kpt_sview_rgb_img--topdown_heatmap--coco--hrnet_coco [HRNet@COCO] + In Collection: HRNet Metadata: + Architecture: *id001 Training Data: COCO Name: topdown_heatmap_hrnet_w32_coco_384x288 + README: configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/coco/hrnet_coco.md Results: - Dataset: COCO Metrics: @@ -39,10 +40,12 @@ Models: Task: Body 2D Keypoint Weights: https://download.openmmlab.com/mmpose/top_down/hrnet/hrnet_w32_coco_384x288-d9f0d786_20200708.pth - Config: configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/coco/hrnet_w48_coco_256x192.py - In Collection: body--2d_kpt_sview_rgb_img--topdown_heatmap--coco--hrnet_coco [HRNet@COCO] + In Collection: HRNet Metadata: + Architecture: *id001 Training Data: COCO Name: topdown_heatmap_hrnet_w48_coco_256x192 + README: configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/coco/hrnet_coco.md Results: - Dataset: COCO Metrics: @@ -54,10 +57,12 @@ Models: Task: Body 2D Keypoint Weights: https://download.openmmlab.com/mmpose/top_down/hrnet/hrnet_w48_coco_256x192-b9e0b3ab_20200708.pth - Config: configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/coco/hrnet_w48_coco_384x288.py - In Collection: body--2d_kpt_sview_rgb_img--topdown_heatmap--coco--hrnet_coco [HRNet@COCO] + In Collection: HRNet Metadata: + Architecture: *id001 Training Data: COCO Name: topdown_heatmap_hrnet_w48_coco_384x288 + README: configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/coco/hrnet_coco.md Results: - Dataset: COCO Metrics: diff --git a/configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/coco/hrnet_dark_coco.yml b/configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/coco/hrnet_dark_coco.yml index 6667dc9026..b91a461fb7 100644 --- a/configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/coco/hrnet_dark_coco.yml +++ b/configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/coco/hrnet_dark_coco.yml @@ -1,20 +1,18 @@ Collections: -- Metadata: - Architecture: - - HRNet - - DarkPose - Name: body--2d_kpt_sview_rgb_img--topdown_heatmap--coco--hrnet_dark_coco [HRNet+DarkPose@COCO] +- Name: DarkPose Paper: Title: Distribution-aware coordinate representation for human pose estimation URL: http://openaccess.thecvf.com/content_CVPR_2020/html/Zhang_Distribution-Aware_Coordinate_Representation_for_Human_Pose_Estimation_CVPR_2020_paper.html - README: configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/coco/hrnet_dark_coco.md Models: - Config: configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/coco/hrnet_w32_coco_256x192_dark.py - In Collection: body--2d_kpt_sview_rgb_img--topdown_heatmap--coco--hrnet_dark_coco - [HRNet+DarkPose@COCO] + In Collection: DarkPose Metadata: + Architecture: &id001 + - HRNet + - DarkPose Training Data: COCO Name: topdown_heatmap_hrnet_w32_coco_256x192_dark + README: configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/coco/hrnet_dark_coco.md Results: - Dataset: COCO Metrics: @@ -26,11 +24,12 @@ Models: Task: Body 2D Keypoint Weights: https://download.openmmlab.com/mmpose/top_down/hrnet/hrnet_w32_coco_256x192_dark-07f147eb_20200812.pth - Config: configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/coco/hrnet_w32_coco_384x288_dark.py - In Collection: body--2d_kpt_sview_rgb_img--topdown_heatmap--coco--hrnet_dark_coco - [HRNet+DarkPose@COCO] + In Collection: DarkPose Metadata: + Architecture: *id001 Training Data: COCO Name: topdown_heatmap_hrnet_w32_coco_384x288_dark + README: configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/coco/hrnet_dark_coco.md Results: - Dataset: COCO Metrics: @@ -42,11 +41,12 @@ Models: Task: Body 2D Keypoint Weights: https://download.openmmlab.com/mmpose/top_down/hrnet/hrnet_w32_coco_384x288_dark-307dafc2_20210203.pth - Config: configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/coco/hrnet_w48_coco_256x192_dark.py - In Collection: body--2d_kpt_sview_rgb_img--topdown_heatmap--coco--hrnet_dark_coco - [HRNet+DarkPose@COCO] + In Collection: DarkPose Metadata: + Architecture: *id001 Training Data: COCO Name: topdown_heatmap_hrnet_w48_coco_256x192_dark + README: configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/coco/hrnet_dark_coco.md Results: - Dataset: COCO Metrics: @@ -58,11 +58,12 @@ Models: Task: Body 2D Keypoint Weights: https://download.openmmlab.com/mmpose/top_down/hrnet/hrnet_w48_coco_256x192_dark-8cba3197_20200812.pth - Config: configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/coco/hrnet_w48_coco_384x288_dark.py - In Collection: body--2d_kpt_sview_rgb_img--topdown_heatmap--coco--hrnet_dark_coco - [HRNet+DarkPose@COCO] + In Collection: DarkPose Metadata: + Architecture: *id001 Training Data: COCO Name: topdown_heatmap_hrnet_w48_coco_384x288_dark + README: configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/coco/hrnet_dark_coco.md Results: - Dataset: COCO Metrics: diff --git a/configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/coco/hrnet_fp16_coco.yml b/configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/coco/hrnet_fp16_coco.yml index b9d6f8323e..318f47ccf2 100644 --- a/configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/coco/hrnet_fp16_coco.yml +++ b/configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/coco/hrnet_fp16_coco.yml @@ -1,19 +1,17 @@ Collections: -- Metadata: - Architecture: - - HRNet - Name: body--2d_kpt_sview_rgb_img--topdown_heatmap--coco--hrnet_fp16_coco [HRNet@COCO] +- Name: HRNet Paper: Title: Deep high-resolution representation learning for human pose estimation URL: http://openaccess.thecvf.com/content_CVPR_2019/html/Sun_Deep_High-Resolution_Representation_Learning_for_Human_Pose_Estimation_CVPR_2019_paper.html - README: configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/coco/hrnet_fp16_coco.md Models: - Config: configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/coco/hrnet_w32_coco_256x192_fp16_dynamic.py - In Collection: body--2d_kpt_sview_rgb_img--topdown_heatmap--coco--hrnet_fp16_coco - [HRNet@COCO] + In Collection: HRNet Metadata: + Architecture: + - HRNet Training Data: COCO Name: topdown_heatmap_hrnet_w32_coco_256x192_fp16_dynamic + README: configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/coco/hrnet_fp16_coco.md Results: - Dataset: COCO Metrics: diff --git a/configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/coco/hrnet_udp_coco.yml b/configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/coco/hrnet_udp_coco.yml index c5208f51d9..44c9042e9e 100644 --- a/configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/coco/hrnet_udp_coco.yml +++ b/configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/coco/hrnet_udp_coco.yml @@ -1,21 +1,19 @@ Collections: -- Metadata: - Architecture: - - HRNet - - UDP - Name: body--2d_kpt_sview_rgb_img--topdown_heatmap--coco--hrnet_udp_coco [HRNet+UDP@COCO] +- Name: UDP Paper: Title: 'The Devil Is in the Details: Delving Into Unbiased Data Processing for Human Pose Estimation' URL: http://openaccess.thecvf.com/content_CVPR_2020/html/Huang_The_Devil_Is_in_the_Details_Delving_Into_Unbiased_Data_CVPR_2020_paper.html - README: configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/coco/hrnet_udp_coco.md Models: - Config: configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/coco/hrnet_w32_coco_256x192_udp.py - In Collection: body--2d_kpt_sview_rgb_img--topdown_heatmap--coco--hrnet_udp_coco - [HRNet+UDP@COCO] + In Collection: UDP Metadata: + Architecture: &id001 + - HRNet + - UDP Training Data: COCO Name: topdown_heatmap_hrnet_w32_coco_256x192_udp + README: configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/coco/hrnet_udp_coco.md Results: - Dataset: COCO Metrics: @@ -27,11 +25,12 @@ Models: Task: Body 2D Keypoint Weights: https://download.openmmlab.com/mmpose/top_down/udp/hrnet_w32_coco_256x192_udp-aba0be42_20210220.pth - Config: configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/coco/hrnet_w32_coco_384x288_udp.py - In Collection: body--2d_kpt_sview_rgb_img--topdown_heatmap--coco--hrnet_udp_coco - [HRNet+UDP@COCO] + In Collection: UDP Metadata: + Architecture: *id001 Training Data: COCO Name: topdown_heatmap_hrnet_w32_coco_384x288_udp + README: configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/coco/hrnet_udp_coco.md Results: - Dataset: COCO Metrics: @@ -43,11 +42,12 @@ Models: Task: Body 2D Keypoint Weights: https://download.openmmlab.com/mmpose/top_down/udp/hrnet_w32_coco_384x288_udp-e97c1a0f_20210223.pth - Config: configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/coco/hrnet_w48_coco_256x192_udp.py - In Collection: body--2d_kpt_sview_rgb_img--topdown_heatmap--coco--hrnet_udp_coco - [HRNet+UDP@COCO] + In Collection: UDP Metadata: + Architecture: *id001 Training Data: COCO Name: topdown_heatmap_hrnet_w48_coco_256x192_udp + README: configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/coco/hrnet_udp_coco.md Results: - Dataset: COCO Metrics: @@ -59,11 +59,12 @@ Models: Task: Body 2D Keypoint Weights: https://download.openmmlab.com/mmpose/top_down/udp/hrnet_w48_coco_256x192_udp-2554c524_20210223.pth - Config: configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/coco/hrnet_w48_coco_384x288_udp.py - In Collection: body--2d_kpt_sview_rgb_img--topdown_heatmap--coco--hrnet_udp_coco - [HRNet+UDP@COCO] + In Collection: UDP Metadata: + Architecture: *id001 Training Data: COCO Name: topdown_heatmap_hrnet_w48_coco_384x288_udp + README: configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/coco/hrnet_udp_coco.md Results: - Dataset: COCO Metrics: @@ -75,11 +76,12 @@ Models: Task: Body 2D Keypoint Weights: https://download.openmmlab.com/mmpose/top_down/udp/hrnet_w48_coco_384x288_udp-0f89c63e_20210223.pth - Config: configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/coco/hrnet_w32_coco_256x192_udp_regress.py - In Collection: body--2d_kpt_sview_rgb_img--topdown_heatmap--coco--hrnet_udp_coco - [HRNet+UDP@COCO] + In Collection: UDP Metadata: + Architecture: *id001 Training Data: COCO Name: topdown_heatmap_hrnet_w32_coco_256x192_udp_regress + README: configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/coco/hrnet_udp_coco.md Results: - Dataset: COCO Metrics: diff --git a/configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/coco/litehrnet_coco.yml b/configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/coco/litehrnet_coco.yml index 5db3ae4d4d..c2d9335b9e 100644 --- a/configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/coco/litehrnet_coco.yml +++ b/configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/coco/litehrnet_coco.yml @@ -1,19 +1,17 @@ Collections: -- Metadata: - Architecture: - - LiteHRNet - Name: body--2d_kpt_sview_rgb_img--topdown_heatmap--coco--litehrnet_coco [LiteHRNet@COCO] +- Name: LiteHRNet Paper: Title: 'Lite-HRNet: A Lightweight High-Resolution Network' URL: https://arxiv.org/abs/2104.06403 - README: configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/coco/litehrnet_coco.md Models: - Config: configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/coco/litehrnet_30_coco_256x192.py - In Collection: body--2d_kpt_sview_rgb_img--topdown_heatmap--coco--litehrnet_coco - [LiteHRNet@COCO] + In Collection: LiteHRNet Metadata: + Architecture: &id001 + - LiteHRNet Training Data: COCO Name: topdown_heatmap_litehrnet_30_coco_256x192 + README: configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/coco/litehrnet_coco.md Results: - Dataset: COCO Metrics: @@ -25,11 +23,12 @@ Models: Task: Body 2D Keypoint Weights: https://download.openmmlab.com/mmpose/top_down/litehrnet/litehrnet30_coco_256x192-4176555b_20210626.pth - Config: configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/coco/litehrnet_30_coco_384x288.py - In Collection: body--2d_kpt_sview_rgb_img--topdown_heatmap--coco--litehrnet_coco - [LiteHRNet@COCO] + In Collection: LiteHRNet Metadata: + Architecture: *id001 Training Data: COCO Name: topdown_heatmap_litehrnet_30_coco_384x288 + README: configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/coco/litehrnet_coco.md Results: - Dataset: COCO Metrics: diff --git a/configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/coco/mobilenetv2_coco.yml b/configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/coco/mobilenetv2_coco.yml index 631db609b5..ba8b6925d4 100644 --- a/configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/coco/mobilenetv2_coco.yml +++ b/configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/coco/mobilenetv2_coco.yml @@ -1,19 +1,17 @@ Collections: -- Metadata: - Architecture: - - MobilenetV2 - Name: body--2d_kpt_sview_rgb_img--topdown_heatmap--coco--mobilenetv2_coco [MobilenetV2@COCO] +- Name: MobilenetV2 Paper: Title: 'Mobilenetv2: Inverted residuals and linear bottlenecks' URL: http://openaccess.thecvf.com/content_cvpr_2018/html/Sandler_MobileNetV2_Inverted_Residuals_CVPR_2018_paper.html - README: configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/coco/mobilenetv2_coco.md Models: - Config: configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/coco/mobilenetv2_coco_256x192.py - In Collection: body--2d_kpt_sview_rgb_img--topdown_heatmap--coco--mobilenetv2_coco - [MobilenetV2@COCO] + In Collection: MobilenetV2 Metadata: + Architecture: &id001 + - MobilenetV2 Training Data: COCO Name: topdown_heatmap_mobilenetv2_coco_256x192 + README: configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/coco/mobilenetv2_coco.md Results: - Dataset: COCO Metrics: @@ -25,11 +23,12 @@ Models: Task: Body 2D Keypoint Weights: https://download.openmmlab.com/mmpose/top_down/mobilenetv2/mobilenetv2_coco_256x192-d1e58e7b_20200727.pth - Config: configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/coco/mobilenetv2_coco_384x288.py - In Collection: body--2d_kpt_sview_rgb_img--topdown_heatmap--coco--mobilenetv2_coco - [MobilenetV2@COCO] + In Collection: MobilenetV2 Metadata: + Architecture: *id001 Training Data: COCO Name: topdown_heatmap_mobilenetv2_coco_384x288 + README: configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/coco/mobilenetv2_coco.md Results: - Dataset: COCO Metrics: diff --git a/configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/coco/mspn_coco.yml b/configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/coco/mspn_coco.yml index 864d97ef77..dd86d4bf47 100644 --- a/configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/coco/mspn_coco.yml +++ b/configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/coco/mspn_coco.yml @@ -1,18 +1,17 @@ Collections: -- Metadata: - Architecture: - - MSPN - Name: body--2d_kpt_sview_rgb_img--topdown_heatmap--coco--mspn_coco [MSPN@COCO] +- Name: MSPN Paper: Title: Rethinking on Multi-Stage Networks for Human Pose Estimation URL: https://arxiv.org/abs/1901.00148 - README: configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/coco/mspn_coco.md Models: - Config: configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/coco/mspn50_coco_256x192.py - In Collection: body--2d_kpt_sview_rgb_img--topdown_heatmap--coco--mspn_coco [MSPN@COCO] + In Collection: MSPN Metadata: + Architecture: &id001 + - MSPN Training Data: COCO Name: topdown_heatmap_mspn50_coco_256x192 + README: configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/coco/mspn_coco.md Results: - Dataset: COCO Metrics: @@ -24,10 +23,12 @@ Models: Task: Body 2D Keypoint Weights: https://download.openmmlab.com/mmpose/top_down/mspn/mspn50_coco_256x192-8fbfb5d0_20201123.pth - Config: configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/coco/2xmspn50_coco_256x192.py - In Collection: body--2d_kpt_sview_rgb_img--topdown_heatmap--coco--mspn_coco [MSPN@COCO] + In Collection: MSPN Metadata: + Architecture: *id001 Training Data: COCO Name: topdown_heatmap_2xmspn50_coco_256x192 + README: configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/coco/mspn_coco.md Results: - Dataset: COCO Metrics: @@ -39,10 +40,12 @@ Models: Task: Body 2D Keypoint Weights: https://download.openmmlab.com/mmpose/top_down/mspn/2xmspn50_coco_256x192-c8765a5c_20201123.pth - Config: configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/coco/3xmspn50_coco_256x192.py - In Collection: body--2d_kpt_sview_rgb_img--topdown_heatmap--coco--mspn_coco [MSPN@COCO] + In Collection: MSPN Metadata: + Architecture: *id001 Training Data: COCO Name: topdown_heatmap_3xmspn50_coco_256x192 + README: configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/coco/mspn_coco.md Results: - Dataset: COCO Metrics: @@ -54,10 +57,12 @@ Models: Task: Body 2D Keypoint Weights: https://download.openmmlab.com/mmpose/top_down/mspn/3xmspn50_coco_256x192-e348f18e_20201123.pth - Config: configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/coco/4xmspn50_coco_256x192.py - In Collection: body--2d_kpt_sview_rgb_img--topdown_heatmap--coco--mspn_coco [MSPN@COCO] + In Collection: MSPN Metadata: + Architecture: *id001 Training Data: COCO Name: topdown_heatmap_4xmspn50_coco_256x192 + README: configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/coco/mspn_coco.md Results: - Dataset: COCO Metrics: diff --git a/configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/coco/resnest_coco.yml b/configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/coco/resnest_coco.yml index aa6c0ea7ce..169834bf7c 100644 --- a/configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/coco/resnest_coco.yml +++ b/configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/coco/resnest_coco.yml @@ -1,18 +1,17 @@ Collections: -- Metadata: - Architecture: - - ResNeSt - Name: body--2d_kpt_sview_rgb_img--topdown_heatmap--coco--resnest_coco [ResNeSt@COCO] +- Name: ResNeSt Paper: Title: 'ResNeSt: Split-Attention Networks' URL: https://arxiv.org/abs/2004.08955 - README: configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/coco/resnest_coco.md Models: - Config: configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/coco/resnest50_coco_256x192.py - In Collection: body--2d_kpt_sview_rgb_img--topdown_heatmap--coco--resnest_coco [ResNeSt@COCO] + In Collection: ResNeSt Metadata: + Architecture: &id001 + - ResNeSt Training Data: COCO Name: topdown_heatmap_resnest50_coco_256x192 + README: configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/coco/resnest_coco.md Results: - Dataset: COCO Metrics: @@ -24,10 +23,12 @@ Models: Task: Body 2D Keypoint Weights: https://download.openmmlab.com/mmpose/top_down/resnest/resnest50_coco_256x192-6e65eece_20210320.pth - Config: configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/coco/resnest50_coco_384x288.py - In Collection: body--2d_kpt_sview_rgb_img--topdown_heatmap--coco--resnest_coco [ResNeSt@COCO] + In Collection: ResNeSt Metadata: + Architecture: *id001 Training Data: COCO Name: topdown_heatmap_resnest50_coco_384x288 + README: configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/coco/resnest_coco.md Results: - Dataset: COCO Metrics: @@ -39,10 +40,12 @@ Models: Task: Body 2D Keypoint Weights: https://download.openmmlab.com/mmpose/top_down/resnest/resnest50_coco_384x288-dcd20436_20210320.pth - Config: configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/coco/resnest101_coco_256x192.py - In Collection: body--2d_kpt_sview_rgb_img--topdown_heatmap--coco--resnest_coco [ResNeSt@COCO] + In Collection: ResNeSt Metadata: + Architecture: *id001 Training Data: COCO Name: topdown_heatmap_resnest101_coco_256x192 + README: configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/coco/resnest_coco.md Results: - Dataset: COCO Metrics: @@ -54,10 +57,12 @@ Models: Task: Body 2D Keypoint Weights: https://download.openmmlab.com/mmpose/top_down/resnest/resnest101_coco_256x192-2ffcdc9d_20210320.pth - Config: configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/coco/resnest101_coco_384x288.py - In Collection: body--2d_kpt_sview_rgb_img--topdown_heatmap--coco--resnest_coco [ResNeSt@COCO] + In Collection: ResNeSt Metadata: + Architecture: *id001 Training Data: COCO Name: topdown_heatmap_resnest101_coco_384x288 + README: configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/coco/resnest_coco.md Results: - Dataset: COCO Metrics: @@ -69,10 +74,12 @@ Models: Task: Body 2D Keypoint Weights: https://download.openmmlab.com/mmpose/top_down/resnest/resnest101_coco_384x288-80660658_20210320.pth - Config: configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/coco/resnest200_coco_256x192.py - In Collection: body--2d_kpt_sview_rgb_img--topdown_heatmap--coco--resnest_coco [ResNeSt@COCO] + In Collection: ResNeSt Metadata: + Architecture: *id001 Training Data: COCO Name: topdown_heatmap_resnest200_coco_256x192 + README: configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/coco/resnest_coco.md Results: - Dataset: COCO Metrics: @@ -84,10 +91,12 @@ Models: Task: Body 2D Keypoint Weights: https://download.openmmlab.com/mmpose/top_down/resnest/resnest200_coco_256x192-db007a48_20210517.pth - Config: configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/coco/resnest200_coco_384x288.py - In Collection: body--2d_kpt_sview_rgb_img--topdown_heatmap--coco--resnest_coco [ResNeSt@COCO] + In Collection: ResNeSt Metadata: + Architecture: *id001 Training Data: COCO Name: topdown_heatmap_resnest200_coco_384x288 + README: configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/coco/resnest_coco.md Results: - Dataset: COCO Metrics: @@ -99,10 +108,12 @@ Models: Task: Body 2D Keypoint Weights: https://download.openmmlab.com/mmpose/top_down/resnest/resnest200_coco_384x288-b5bb76cb_20210517.pth - Config: configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/coco/resnest269_coco_256x192.py - In Collection: body--2d_kpt_sview_rgb_img--topdown_heatmap--coco--resnest_coco [ResNeSt@COCO] + In Collection: ResNeSt Metadata: + Architecture: *id001 Training Data: COCO Name: topdown_heatmap_resnest269_coco_256x192 + README: configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/coco/resnest_coco.md Results: - Dataset: COCO Metrics: @@ -114,10 +125,12 @@ Models: Task: Body 2D Keypoint Weights: https://download.openmmlab.com/mmpose/top_down/resnest/resnest269_coco_256x192-2a7882ac_20210517.pth - Config: configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/coco/resnest269_coco_384x288.py - In Collection: body--2d_kpt_sview_rgb_img--topdown_heatmap--coco--resnest_coco [ResNeSt@COCO] + In Collection: ResNeSt Metadata: + Architecture: *id001 Training Data: COCO Name: topdown_heatmap_resnest269_coco_384x288 + README: configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/coco/resnest_coco.md Results: - Dataset: COCO Metrics: diff --git a/configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/coco/resnet_coco.yml b/configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/coco/resnet_coco.yml index 7d52699627..566b18c22e 100644 --- a/configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/coco/resnet_coco.yml +++ b/configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/coco/resnet_coco.yml @@ -1,19 +1,18 @@ Collections: -- Metadata: - Architecture: - - SimpleBaseline2D - - ResNet - Name: body--2d_kpt_sview_rgb_img--topdown_heatmap--coco--resnet_coco [SimpleBaseline2D+ResNet@COCO] +- Name: SimpleBaseline2D Paper: Title: Simple baselines for human pose estimation and tracking URL: http://openaccess.thecvf.com/content_ECCV_2018/html/Bin_Xiao_Simple_Baselines_for_ECCV_2018_paper.html - README: configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/coco/resnet_coco.md Models: - Config: configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/coco/res50_coco_256x192.py - In Collection: body--2d_kpt_sview_rgb_img--topdown_heatmap--coco--resnet_coco [SimpleBaseline2D+ResNet@COCO] + In Collection: SimpleBaseline2D Metadata: + Architecture: &id001 + - SimpleBaseline2D + - ResNet Training Data: COCO Name: topdown_heatmap_res50_coco_256x192 + README: configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/coco/resnet_coco.md Results: - Dataset: COCO Metrics: @@ -25,10 +24,12 @@ Models: Task: Body 2D Keypoint Weights: https://download.openmmlab.com/mmpose/top_down/resnet/res50_coco_256x192-ec54d7f3_20200709.pth - Config: configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/coco/res50_coco_384x288.py - In Collection: body--2d_kpt_sview_rgb_img--topdown_heatmap--coco--resnet_coco [SimpleBaseline2D+ResNet@COCO] + In Collection: SimpleBaseline2D Metadata: + Architecture: *id001 Training Data: COCO Name: topdown_heatmap_res50_coco_384x288 + README: configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/coco/resnet_coco.md Results: - Dataset: COCO Metrics: @@ -40,10 +41,12 @@ Models: Task: Body 2D Keypoint Weights: https://download.openmmlab.com/mmpose/top_down/resnet/res50_coco_384x288-e6f795e9_20200709.pth - Config: configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/coco/res101_coco_256x192.py - In Collection: body--2d_kpt_sview_rgb_img--topdown_heatmap--coco--resnet_coco [SimpleBaseline2D+ResNet@COCO] + In Collection: SimpleBaseline2D Metadata: + Architecture: *id001 Training Data: COCO Name: topdown_heatmap_res101_coco_256x192 + README: configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/coco/resnet_coco.md Results: - Dataset: COCO Metrics: @@ -55,10 +58,12 @@ Models: Task: Body 2D Keypoint Weights: https://download.openmmlab.com/mmpose/top_down/resnet/res101_coco_256x192-6e6babf0_20200708.pth - Config: configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/coco/res101_coco_384x288.py - In Collection: body--2d_kpt_sview_rgb_img--topdown_heatmap--coco--resnet_coco [SimpleBaseline2D+ResNet@COCO] + In Collection: SimpleBaseline2D Metadata: + Architecture: *id001 Training Data: COCO Name: topdown_heatmap_res101_coco_384x288 + README: configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/coco/resnet_coco.md Results: - Dataset: COCO Metrics: @@ -70,10 +75,12 @@ Models: Task: Body 2D Keypoint Weights: https://download.openmmlab.com/mmpose/top_down/resnet/res101_coco_384x288-8c71bdc9_20200709.pth - Config: configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/coco/res152_coco_256x192.py - In Collection: body--2d_kpt_sview_rgb_img--topdown_heatmap--coco--resnet_coco [SimpleBaseline2D+ResNet@COCO] + In Collection: SimpleBaseline2D Metadata: + Architecture: *id001 Training Data: COCO Name: topdown_heatmap_res152_coco_256x192 + README: configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/coco/resnet_coco.md Results: - Dataset: COCO Metrics: @@ -85,10 +92,12 @@ Models: Task: Body 2D Keypoint Weights: https://download.openmmlab.com/mmpose/top_down/resnet/res152_coco_256x192-f6e307c2_20200709.pth - Config: configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/coco/res152_coco_384x288.py - In Collection: body--2d_kpt_sview_rgb_img--topdown_heatmap--coco--resnet_coco [SimpleBaseline2D+ResNet@COCO] + In Collection: SimpleBaseline2D Metadata: + Architecture: *id001 Training Data: COCO Name: topdown_heatmap_res152_coco_384x288 + README: configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/coco/resnet_coco.md Results: - Dataset: COCO Metrics: diff --git a/configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/coco/resnet_dark_coco.yml b/configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/coco/resnet_dark_coco.yml index 17033361b9..b5009ed9b4 100644 --- a/configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/coco/resnet_dark_coco.yml +++ b/configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/coco/resnet_dark_coco.yml @@ -1,21 +1,19 @@ Collections: -- Metadata: - Architecture: - - SimpleBaseline2D - - ResNet - - DarkPose - Name: body--2d_kpt_sview_rgb_img--topdown_heatmap--coco--resnet_dark_coco [SimpleBaseline2D+ResNet+DarkPose@COCO] +- Name: DarkPose Paper: Title: Distribution-aware coordinate representation for human pose estimation URL: http://openaccess.thecvf.com/content_CVPR_2020/html/Zhang_Distribution-Aware_Coordinate_Representation_for_Human_Pose_Estimation_CVPR_2020_paper.html - README: configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/coco/resnet_dark_coco.md Models: - Config: configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/coco/res50_coco_256x192_dark.py - In Collection: body--2d_kpt_sview_rgb_img--topdown_heatmap--coco--resnet_dark_coco - [SimpleBaseline2D+ResNet+DarkPose@COCO] + In Collection: DarkPose Metadata: + Architecture: &id001 + - SimpleBaseline2D + - ResNet + - DarkPose Training Data: COCO Name: topdown_heatmap_res50_coco_256x192_dark + README: configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/coco/resnet_dark_coco.md Results: - Dataset: COCO Metrics: @@ -27,11 +25,12 @@ Models: Task: Body 2D Keypoint Weights: https://download.openmmlab.com/mmpose/top_down/resnet/res50_coco_256x192_dark-43379d20_20200709.pth - Config: configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/coco/res50_coco_384x288_dark.py - In Collection: body--2d_kpt_sview_rgb_img--topdown_heatmap--coco--resnet_dark_coco - [SimpleBaseline2D+ResNet+DarkPose@COCO] + In Collection: DarkPose Metadata: + Architecture: *id001 Training Data: COCO Name: topdown_heatmap_res50_coco_384x288_dark + README: configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/coco/resnet_dark_coco.md Results: - Dataset: COCO Metrics: @@ -43,11 +42,12 @@ Models: Task: Body 2D Keypoint Weights: https://download.openmmlab.com/mmpose/top_down/resnet/res50_coco_384x288_dark-33d3e5e5_20210203.pth - Config: configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/coco/res101_coco_256x192_dark.py - In Collection: body--2d_kpt_sview_rgb_img--topdown_heatmap--coco--resnet_dark_coco - [SimpleBaseline2D+ResNet+DarkPose@COCO] + In Collection: DarkPose Metadata: + Architecture: *id001 Training Data: COCO Name: topdown_heatmap_res101_coco_256x192_dark + README: configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/coco/resnet_dark_coco.md Results: - Dataset: COCO Metrics: @@ -59,11 +59,12 @@ Models: Task: Body 2D Keypoint Weights: https://download.openmmlab.com/mmpose/top_down/resnet/res101_coco_256x192_dark-64d433e6_20200812.pth - Config: configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/coco/res101_coco_384x288_dark.py - In Collection: body--2d_kpt_sview_rgb_img--topdown_heatmap--coco--resnet_dark_coco - [SimpleBaseline2D+ResNet+DarkPose@COCO] + In Collection: DarkPose Metadata: + Architecture: *id001 Training Data: COCO Name: topdown_heatmap_res101_coco_384x288_dark + README: configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/coco/resnet_dark_coco.md Results: - Dataset: COCO Metrics: @@ -75,11 +76,12 @@ Models: Task: Body 2D Keypoint Weights: https://download.openmmlab.com/mmpose/top_down/resnet/res101_coco_384x288_dark-cb45c88d_20210203.pth - Config: configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/coco/res152_coco_256x192_dark.py - In Collection: body--2d_kpt_sview_rgb_img--topdown_heatmap--coco--resnet_dark_coco - [SimpleBaseline2D+ResNet+DarkPose@COCO] + In Collection: DarkPose Metadata: + Architecture: *id001 Training Data: COCO Name: topdown_heatmap_res152_coco_256x192_dark + README: configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/coco/resnet_dark_coco.md Results: - Dataset: COCO Metrics: @@ -91,11 +93,12 @@ Models: Task: Body 2D Keypoint Weights: https://download.openmmlab.com/mmpose/top_down/resnet/res152_coco_256x192_dark-ab4840d5_20200812.pth - Config: configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/coco/res152_coco_384x288_dark.py - In Collection: body--2d_kpt_sview_rgb_img--topdown_heatmap--coco--resnet_dark_coco - [SimpleBaseline2D+ResNet+DarkPose@COCO] + In Collection: DarkPose Metadata: + Architecture: *id001 Training Data: COCO Name: topdown_heatmap_res152_coco_384x288_dark + README: configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/coco/resnet_dark_coco.md Results: - Dataset: COCO Metrics: diff --git a/configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/coco/resnet_fp16_coco.yml b/configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/coco/resnet_fp16_coco.yml index bbe5c4b2fc..114e67e220 100644 --- a/configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/coco/resnet_fp16_coco.yml +++ b/configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/coco/resnet_fp16_coco.yml @@ -1,20 +1,18 @@ Collections: -- Metadata: - Architecture: - - SimpleBaseline2D - - ResNet - Name: body--2d_kpt_sview_rgb_img--topdown_heatmap--coco--resnet_fp16_coco [SimpleBaseline2D+ResNet@COCO] +- Name: SimpleBaseline2D Paper: Title: Simple baselines for human pose estimation and tracking URL: http://openaccess.thecvf.com/content_ECCV_2018/html/Bin_Xiao_Simple_Baselines_for_ECCV_2018_paper.html - README: configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/coco/resnet_fp16_coco.md Models: - Config: configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/coco/res50_coco_256x192_fp16_dynamic.py - In Collection: body--2d_kpt_sview_rgb_img--topdown_heatmap--coco--resnet_fp16_coco - [SimpleBaseline2D+ResNet@COCO] + In Collection: SimpleBaseline2D Metadata: + Architecture: + - SimpleBaseline2D + - ResNet Training Data: COCO Name: topdown_heatmap_res50_coco_256x192_fp16_dynamic + README: configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/coco/resnet_fp16_coco.md Results: - Dataset: COCO Metrics: diff --git a/configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/coco/resnetv1d_coco.yml b/configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/coco/resnetv1d_coco.yml index 1dd7edb5ed..d379af9a46 100644 --- a/configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/coco/resnetv1d_coco.yml +++ b/configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/coco/resnetv1d_coco.yml @@ -1,19 +1,17 @@ Collections: -- Metadata: - Architecture: - - ResNetV1D - Name: body--2d_kpt_sview_rgb_img--topdown_heatmap--coco--resnetv1d_coco [ResNetV1D@COCO] +- Name: ResNetV1D Paper: Title: Bag of tricks for image classification with convolutional neural networks URL: http://openaccess.thecvf.com/content_CVPR_2019/html/He_Bag_of_Tricks_for_Image_Classification_with_Convolutional_Neural_Networks_CVPR_2019_paper.html - README: configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/coco/resnetv1d_coco.md Models: - Config: configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/coco/resnetv1d50_coco_256x192.py - In Collection: body--2d_kpt_sview_rgb_img--topdown_heatmap--coco--resnetv1d_coco - [ResNetV1D@COCO] + In Collection: ResNetV1D Metadata: + Architecture: &id001 + - ResNetV1D Training Data: COCO Name: topdown_heatmap_resnetv1d50_coco_256x192 + README: configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/coco/resnetv1d_coco.md Results: - Dataset: COCO Metrics: @@ -25,11 +23,12 @@ Models: Task: Body 2D Keypoint Weights: https://download.openmmlab.com/mmpose/top_down/resnetv1d/resnetv1d50_coco_256x192-a243b840_20200727.pth - Config: configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/coco/resnetv1d50_coco_384x288.py - In Collection: body--2d_kpt_sview_rgb_img--topdown_heatmap--coco--resnetv1d_coco - [ResNetV1D@COCO] + In Collection: ResNetV1D Metadata: + Architecture: *id001 Training Data: COCO Name: topdown_heatmap_resnetv1d50_coco_384x288 + README: configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/coco/resnetv1d_coco.md Results: - Dataset: COCO Metrics: @@ -41,11 +40,12 @@ Models: Task: Body 2D Keypoint Weights: https://download.openmmlab.com/mmpose/top_down/resnetv1d/resnetv1d50_coco_384x288-01f3fbb9_20200727.pth - Config: configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/coco/resnetv1d101_coco_256x192.py - In Collection: body--2d_kpt_sview_rgb_img--topdown_heatmap--coco--resnetv1d_coco - [ResNetV1D@COCO] + In Collection: ResNetV1D Metadata: + Architecture: *id001 Training Data: COCO Name: topdown_heatmap_resnetv1d101_coco_256x192 + README: configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/coco/resnetv1d_coco.md Results: - Dataset: COCO Metrics: @@ -57,11 +57,12 @@ Models: Task: Body 2D Keypoint Weights: https://download.openmmlab.com/mmpose/top_down/resnetv1d/resnetv1d101_coco_256x192-5bd08cab_20200727.pth - Config: configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/coco/resnetv1d101_coco_384x288.py - In Collection: body--2d_kpt_sview_rgb_img--topdown_heatmap--coco--resnetv1d_coco - [ResNetV1D@COCO] + In Collection: ResNetV1D Metadata: + Architecture: *id001 Training Data: COCO Name: topdown_heatmap_resnetv1d101_coco_384x288 + README: configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/coco/resnetv1d_coco.md Results: - Dataset: COCO Metrics: @@ -73,11 +74,12 @@ Models: Task: Body 2D Keypoint Weights: https://download.openmmlab.com/mmpose/top_down/resnetv1d/resnetv1d101_coco_384x288-5f9e421d_20200730.pth - Config: configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/coco/resnetv1d152_coco_256x192.py - In Collection: body--2d_kpt_sview_rgb_img--topdown_heatmap--coco--resnetv1d_coco - [ResNetV1D@COCO] + In Collection: ResNetV1D Metadata: + Architecture: *id001 Training Data: COCO Name: topdown_heatmap_resnetv1d152_coco_256x192 + README: configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/coco/resnetv1d_coco.md Results: - Dataset: COCO Metrics: @@ -89,11 +91,12 @@ Models: Task: Body 2D Keypoint Weights: https://download.openmmlab.com/mmpose/top_down/resnetv1d/resnetv1d152_coco_256x192-c4df51dc_20200727.pth - Config: configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/coco/resnetv1d152_coco_384x288.py - In Collection: body--2d_kpt_sview_rgb_img--topdown_heatmap--coco--resnetv1d_coco - [ResNetV1D@COCO] + In Collection: ResNetV1D Metadata: + Architecture: *id001 Training Data: COCO Name: topdown_heatmap_resnetv1d152_coco_384x288 + README: configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/coco/resnetv1d_coco.md Results: - Dataset: COCO Metrics: diff --git a/configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/coco/resnext_coco.yml b/configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/coco/resnext_coco.yml index a177e827cd..6265fdf060 100644 --- a/configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/coco/resnext_coco.yml +++ b/configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/coco/resnext_coco.yml @@ -1,18 +1,17 @@ Collections: -- Metadata: - Architecture: - - ResNext - Name: body--2d_kpt_sview_rgb_img--topdown_heatmap--coco--resnext_coco [ResNext@COCO] +- Name: ResNext Paper: Title: Aggregated residual transformations for deep neural networks URL: http://openaccess.thecvf.com/content_cvpr_2017/html/Xie_Aggregated_Residual_Transformations_CVPR_2017_paper.html - README: configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/coco/resnext_coco.md Models: - Config: configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/coco/resnext50_coco_256x192.py - In Collection: body--2d_kpt_sview_rgb_img--topdown_heatmap--coco--resnext_coco [ResNext@COCO] + In Collection: ResNext Metadata: + Architecture: &id001 + - ResNext Training Data: COCO Name: topdown_heatmap_resnext50_coco_256x192 + README: configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/coco/resnext_coco.md Results: - Dataset: COCO Metrics: @@ -24,10 +23,12 @@ Models: Task: Body 2D Keypoint Weights: https://download.openmmlab.com/mmpose/top_down/resnext/resnext50_coco_256x192-dcff15f6_20200727.pth - Config: configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/coco/resnext50_coco_384x288.py - In Collection: body--2d_kpt_sview_rgb_img--topdown_heatmap--coco--resnext_coco [ResNext@COCO] + In Collection: ResNext Metadata: + Architecture: *id001 Training Data: COCO Name: topdown_heatmap_resnext50_coco_384x288 + README: configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/coco/resnext_coco.md Results: - Dataset: COCO Metrics: @@ -39,10 +40,12 @@ Models: Task: Body 2D Keypoint Weights: https://download.openmmlab.com/mmpose/top_down/resnext/resnext50_coco_384x288-412c848f_20200727.pth - Config: configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/coco/resnext101_coco_256x192.py - In Collection: body--2d_kpt_sview_rgb_img--topdown_heatmap--coco--resnext_coco [ResNext@COCO] + In Collection: ResNext Metadata: + Architecture: *id001 Training Data: COCO Name: topdown_heatmap_resnext101_coco_256x192 + README: configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/coco/resnext_coco.md Results: - Dataset: COCO Metrics: @@ -54,10 +57,12 @@ Models: Task: Body 2D Keypoint Weights: https://download.openmmlab.com/mmpose/top_down/resnext/resnext101_coco_256x192-c7eba365_20200727.pth - Config: configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/coco/resnext101_coco_384x288.py - In Collection: body--2d_kpt_sview_rgb_img--topdown_heatmap--coco--resnext_coco [ResNext@COCO] + In Collection: ResNext Metadata: + Architecture: *id001 Training Data: COCO Name: topdown_heatmap_resnext101_coco_384x288 + README: configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/coco/resnext_coco.md Results: - Dataset: COCO Metrics: @@ -69,10 +74,12 @@ Models: Task: Body 2D Keypoint Weights: https://download.openmmlab.com/mmpose/top_down/resnext/resnext101_coco_384x288-f5eabcd6_20200727.pth - Config: configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/coco/resnext152_coco_256x192.py - In Collection: body--2d_kpt_sview_rgb_img--topdown_heatmap--coco--resnext_coco [ResNext@COCO] + In Collection: ResNext Metadata: + Architecture: *id001 Training Data: COCO Name: topdown_heatmap_resnext152_coco_256x192 + README: configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/coco/resnext_coco.md Results: - Dataset: COCO Metrics: @@ -84,10 +91,12 @@ Models: Task: Body 2D Keypoint Weights: https://download.openmmlab.com/mmpose/top_down/resnext/resnext152_coco_256x192-102449aa_20200727.pth - Config: configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/coco/resnext152_coco_384x288.py - In Collection: body--2d_kpt_sview_rgb_img--topdown_heatmap--coco--resnext_coco [ResNext@COCO] + In Collection: ResNext Metadata: + Architecture: *id001 Training Data: COCO Name: topdown_heatmap_resnext152_coco_384x288 + README: configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/coco/resnext_coco.md Results: - Dataset: COCO Metrics: diff --git a/configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/coco/rsn_coco.yml b/configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/coco/rsn_coco.yml index 33890a4aa4..8e14501fc9 100644 --- a/configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/coco/rsn_coco.yml +++ b/configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/coco/rsn_coco.yml @@ -1,18 +1,17 @@ Collections: -- Metadata: - Architecture: - - RSN - Name: body--2d_kpt_sview_rgb_img--topdown_heatmap--coco--rsn_coco [RSN@COCO] +- Name: RSN Paper: Title: Learning Delicate Local Representations for Multi-Person Pose Estimation URL: https://link.springer.com/chapter/10.1007/978-3-030-58580-8_27 - README: configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/coco/rsn_coco.md Models: - Config: configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/coco/rsn18_coco_256x192.py - In Collection: body--2d_kpt_sview_rgb_img--topdown_heatmap--coco--rsn_coco [RSN@COCO] + In Collection: RSN Metadata: + Architecture: &id001 + - RSN Training Data: COCO Name: topdown_heatmap_rsn18_coco_256x192 + README: configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/coco/rsn_coco.md Results: - Dataset: COCO Metrics: @@ -24,10 +23,12 @@ Models: Task: Body 2D Keypoint Weights: https://download.openmmlab.com/mmpose/top_down/rsn/rsn18_coco_256x192-72f4b4a7_20201127.pth - Config: configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/coco/rsn50_coco_256x192.py - In Collection: body--2d_kpt_sview_rgb_img--topdown_heatmap--coco--rsn_coco [RSN@COCO] + In Collection: RSN Metadata: + Architecture: *id001 Training Data: COCO Name: topdown_heatmap_rsn50_coco_256x192 + README: configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/coco/rsn_coco.md Results: - Dataset: COCO Metrics: @@ -39,10 +40,12 @@ Models: Task: Body 2D Keypoint Weights: https://download.openmmlab.com/mmpose/top_down/rsn/rsn50_coco_256x192-72ffe709_20201127.pth - Config: configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/coco/2xrsn50_coco_256x192.py - In Collection: body--2d_kpt_sview_rgb_img--topdown_heatmap--coco--rsn_coco [RSN@COCO] + In Collection: RSN Metadata: + Architecture: *id001 Training Data: COCO Name: topdown_heatmap_2xrsn50_coco_256x192 + README: configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/coco/rsn_coco.md Results: - Dataset: COCO Metrics: @@ -54,10 +57,12 @@ Models: Task: Body 2D Keypoint Weights: https://download.openmmlab.com/mmpose/top_down/rsn/2xrsn50_coco_256x192-50648f0e_20201127.pth - Config: configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/coco/3xrsn50_coco_256x192.py - In Collection: body--2d_kpt_sview_rgb_img--topdown_heatmap--coco--rsn_coco [RSN@COCO] + In Collection: RSN Metadata: + Architecture: *id001 Training Data: COCO Name: topdown_heatmap_3xrsn50_coco_256x192 + README: configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/coco/rsn_coco.md Results: - Dataset: COCO Metrics: diff --git a/configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/coco/scnet_coco.yml b/configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/coco/scnet_coco.yml index 8303482f25..c6b0e357a6 100644 --- a/configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/coco/scnet_coco.yml +++ b/configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/coco/scnet_coco.yml @@ -1,18 +1,17 @@ Collections: -- Metadata: - Architecture: - - SCNet - Name: body--2d_kpt_sview_rgb_img--topdown_heatmap--coco--scnet_coco [SCNet@COCO] +- Name: SCNet Paper: Title: Improving Convolutional Networks with Self-Calibrated Convolutions URL: http://openaccess.thecvf.com/content_CVPR_2020/html/Liu_Improving_Convolutional_Networks_With_Self-Calibrated_Convolutions_CVPR_2020_paper.html - README: configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/coco/scnet_coco.md Models: - Config: configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/coco/scnet50_coco_256x192.py - In Collection: body--2d_kpt_sview_rgb_img--topdown_heatmap--coco--scnet_coco [SCNet@COCO] + In Collection: SCNet Metadata: + Architecture: &id001 + - SCNet Training Data: COCO Name: topdown_heatmap_scnet50_coco_256x192 + README: configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/coco/scnet_coco.md Results: - Dataset: COCO Metrics: @@ -24,10 +23,12 @@ Models: Task: Body 2D Keypoint Weights: https://download.openmmlab.com/mmpose/top_down/scnet/scnet50_coco_256x192-6920f829_20200709.pth - Config: configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/coco/scnet50_coco_384x288.py - In Collection: body--2d_kpt_sview_rgb_img--topdown_heatmap--coco--scnet_coco [SCNet@COCO] + In Collection: SCNet Metadata: + Architecture: *id001 Training Data: COCO Name: topdown_heatmap_scnet50_coco_384x288 + README: configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/coco/scnet_coco.md Results: - Dataset: COCO Metrics: @@ -39,10 +40,12 @@ Models: Task: Body 2D Keypoint Weights: https://download.openmmlab.com/mmpose/top_down/scnet/scnet50_coco_384x288-9cacd0ea_20200709.pth - Config: configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/coco/scnet101_coco_256x192.py - In Collection: body--2d_kpt_sview_rgb_img--topdown_heatmap--coco--scnet_coco [SCNet@COCO] + In Collection: SCNet Metadata: + Architecture: *id001 Training Data: COCO Name: topdown_heatmap_scnet101_coco_256x192 + README: configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/coco/scnet_coco.md Results: - Dataset: COCO Metrics: @@ -54,10 +57,12 @@ Models: Task: Body 2D Keypoint Weights: https://download.openmmlab.com/mmpose/top_down/scnet/scnet101_coco_256x192-6d348ef9_20200709.pth - Config: configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/coco/scnet101_coco_384x288.py - In Collection: body--2d_kpt_sview_rgb_img--topdown_heatmap--coco--scnet_coco [SCNet@COCO] + In Collection: SCNet Metadata: + Architecture: *id001 Training Data: COCO Name: topdown_heatmap_scnet101_coco_384x288 + README: configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/coco/scnet_coco.md Results: - Dataset: COCO Metrics: diff --git a/configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/coco/seresnet_coco.yml b/configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/coco/seresnet_coco.yml index 616418c5c5..147170a535 100644 --- a/configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/coco/seresnet_coco.yml +++ b/configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/coco/seresnet_coco.yml @@ -1,19 +1,17 @@ Collections: -- Metadata: - Architecture: - - SEResNet - Name: body--2d_kpt_sview_rgb_img--topdown_heatmap--coco--seresnet_coco [SEResNet@COCO] +- Name: SEResNet Paper: Title: Squeeze-and-excitation networks URL: http://openaccess.thecvf.com/content_cvpr_2018/html/Hu_Squeeze-and-Excitation_Networks_CVPR_2018_paper - README: configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/coco/seresnet_coco.md Models: - Config: configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/coco/seresnet50_coco_256x192.py - In Collection: body--2d_kpt_sview_rgb_img--topdown_heatmap--coco--seresnet_coco - [SEResNet@COCO] + In Collection: SEResNet Metadata: + Architecture: &id001 + - SEResNet Training Data: COCO Name: topdown_heatmap_seresnet50_coco_256x192 + README: configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/coco/seresnet_coco.md Results: - Dataset: COCO Metrics: @@ -25,11 +23,12 @@ Models: Task: Body 2D Keypoint Weights: https://download.openmmlab.com/mmpose/top_down/seresnet/seresnet50_coco_256x192-25058b66_20200727.pth - Config: configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/coco/seresnet50_coco_384x288.py - In Collection: body--2d_kpt_sview_rgb_img--topdown_heatmap--coco--seresnet_coco - [SEResNet@COCO] + In Collection: SEResNet Metadata: + Architecture: *id001 Training Data: COCO Name: topdown_heatmap_seresnet50_coco_384x288 + README: configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/coco/seresnet_coco.md Results: - Dataset: COCO Metrics: @@ -41,11 +40,12 @@ Models: Task: Body 2D Keypoint Weights: https://download.openmmlab.com/mmpose/top_down/seresnet/seresnet50_coco_384x288-bc0b7680_20200727.pth - Config: configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/coco/seresnet101_coco_256x192.py - In Collection: body--2d_kpt_sview_rgb_img--topdown_heatmap--coco--seresnet_coco - [SEResNet@COCO] + In Collection: SEResNet Metadata: + Architecture: *id001 Training Data: COCO Name: topdown_heatmap_seresnet101_coco_256x192 + README: configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/coco/seresnet_coco.md Results: - Dataset: COCO Metrics: @@ -57,11 +57,12 @@ Models: Task: Body 2D Keypoint Weights: https://download.openmmlab.com/mmpose/top_down/seresnet/seresnet101_coco_256x192-83f29c4d_20200727.pth - Config: configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/coco/seresnet101_coco_384x288.py - In Collection: body--2d_kpt_sview_rgb_img--topdown_heatmap--coco--seresnet_coco - [SEResNet@COCO] + In Collection: SEResNet Metadata: + Architecture: *id001 Training Data: COCO Name: topdown_heatmap_seresnet101_coco_384x288 + README: configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/coco/seresnet_coco.md Results: - Dataset: COCO Metrics: @@ -73,11 +74,12 @@ Models: Task: Body 2D Keypoint Weights: https://download.openmmlab.com/mmpose/top_down/seresnet/seresnet101_coco_384x288-48de1709_20200727.pth - Config: configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/coco/seresnet152_coco_256x192.py - In Collection: body--2d_kpt_sview_rgb_img--topdown_heatmap--coco--seresnet_coco - [SEResNet@COCO] + In Collection: SEResNet Metadata: + Architecture: *id001 Training Data: COCO Name: topdown_heatmap_seresnet152_coco_256x192 + README: configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/coco/seresnet_coco.md Results: - Dataset: COCO Metrics: @@ -89,11 +91,12 @@ Models: Task: Body 2D Keypoint Weights: https://download.openmmlab.com/mmpose/top_down/seresnet/seresnet152_coco_256x192-1c628d79_20200727.pth - Config: configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/coco/seresnet152_coco_384x288.py - In Collection: body--2d_kpt_sview_rgb_img--topdown_heatmap--coco--seresnet_coco - [SEResNet@COCO] + In Collection: SEResNet Metadata: + Architecture: *id001 Training Data: COCO Name: topdown_heatmap_seresnet152_coco_384x288 + README: configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/coco/seresnet_coco.md Results: - Dataset: COCO Metrics: diff --git a/configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/coco/shufflenetv1_coco.yml b/configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/coco/shufflenetv1_coco.yml index df3a8f25ca..9f3c5b95ec 100644 --- a/configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/coco/shufflenetv1_coco.yml +++ b/configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/coco/shufflenetv1_coco.yml @@ -1,20 +1,18 @@ Collections: -- Metadata: - Architecture: - - ShufflenetV1 - Name: body--2d_kpt_sview_rgb_img--topdown_heatmap--coco--shufflenetv1_coco [ShufflenetV1@COCO] +- Name: ShufflenetV1 Paper: Title: 'Shufflenet: An extremely efficient convolutional neural network for mobile devices' URL: http://openaccess.thecvf.com/content_cvpr_2018/html/Zhang_ShuffleNet_An_Extremely_CVPR_2018_paper.html - README: configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/coco/shufflenetv1_coco.md Models: - Config: configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/coco/shufflenetv1_coco_256x192.py - In Collection: body--2d_kpt_sview_rgb_img--topdown_heatmap--coco--shufflenetv1_coco - [ShufflenetV1@COCO] + In Collection: ShufflenetV1 Metadata: + Architecture: &id001 + - ShufflenetV1 Training Data: COCO Name: topdown_heatmap_shufflenetv1_coco_256x192 + README: configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/coco/shufflenetv1_coco.md Results: - Dataset: COCO Metrics: @@ -26,11 +24,12 @@ Models: Task: Body 2D Keypoint Weights: https://download.openmmlab.com/mmpose/top_down/shufflenetv1/shufflenetv1_coco_256x192-353bc02c_20200727.pth - Config: configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/coco/shufflenetv1_coco_384x288.py - In Collection: body--2d_kpt_sview_rgb_img--topdown_heatmap--coco--shufflenetv1_coco - [ShufflenetV1@COCO] + In Collection: ShufflenetV1 Metadata: + Architecture: *id001 Training Data: COCO Name: topdown_heatmap_shufflenetv1_coco_384x288 + README: configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/coco/shufflenetv1_coco.md Results: - Dataset: COCO Metrics: diff --git a/configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/coco/shufflenetv2_coco.yml b/configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/coco/shufflenetv2_coco.yml index d0bebdd242..dce1603057 100644 --- a/configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/coco/shufflenetv2_coco.yml +++ b/configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/coco/shufflenetv2_coco.yml @@ -1,19 +1,17 @@ Collections: -- Metadata: - Architecture: - - ShufflenetV2 - Name: body--2d_kpt_sview_rgb_img--topdown_heatmap--coco--shufflenetv2_coco [ShufflenetV2@COCO] +- Name: ShufflenetV2 Paper: Title: 'Shufflenet v2: Practical guidelines for efficient cnn architecture design' URL: http://openaccess.thecvf.com/content_ECCV_2018/html/Ningning_Light-weight_CNN_Architecture_ECCV_2018_paper.html - README: configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/coco/shufflenetv2_coco.md Models: - Config: configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/coco/shufflenetv2_coco_256x192.py - In Collection: body--2d_kpt_sview_rgb_img--topdown_heatmap--coco--shufflenetv2_coco - [ShufflenetV2@COCO] + In Collection: ShufflenetV2 Metadata: + Architecture: &id001 + - ShufflenetV2 Training Data: COCO Name: topdown_heatmap_shufflenetv2_coco_256x192 + README: configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/coco/shufflenetv2_coco.md Results: - Dataset: COCO Metrics: @@ -25,11 +23,12 @@ Models: Task: Body 2D Keypoint Weights: https://download.openmmlab.com/mmpose/top_down/shufflenetv2/shufflenetv2_coco_256x192-0aba71c7_20200921.pth - Config: configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/coco/shufflenetv2_coco_384x288.py - In Collection: body--2d_kpt_sview_rgb_img--topdown_heatmap--coco--shufflenetv2_coco - [ShufflenetV2@COCO] + In Collection: ShufflenetV2 Metadata: + Architecture: *id001 Training Data: COCO Name: topdown_heatmap_shufflenetv2_coco_384x288 + README: configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/coco/shufflenetv2_coco.md Results: - Dataset: COCO Metrics: diff --git a/configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/coco/vgg_coco.yml b/configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/coco/vgg_coco.yml index a0720b71b0..c586c8ae81 100644 --- a/configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/coco/vgg_coco.yml +++ b/configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/coco/vgg_coco.yml @@ -1,18 +1,17 @@ Collections: -- Metadata: - Architecture: - - VGG - Name: body--2d_kpt_sview_rgb_img--topdown_heatmap--coco--vgg_coco [VGG@COCO] +- Name: VGG Paper: Title: Very deep convolutional networks for large-scale image recognition URL: https://arxiv.org/abs/1409.1556 - README: configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/coco/vgg_coco.md Models: - Config: configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/coco/vgg16_bn_coco_256x192.py - In Collection: body--2d_kpt_sview_rgb_img--topdown_heatmap--coco--vgg_coco [VGG@COCO] + In Collection: VGG Metadata: + Architecture: + - VGG Training Data: COCO Name: topdown_heatmap_vgg16_bn_coco_256x192 + README: configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/coco/vgg_coco.md Results: - Dataset: COCO Metrics: diff --git a/configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/coco/vipnas_coco.yml b/configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/coco/vipnas_coco.yml index 3eb384c0f0..f97c92963d 100644 --- a/configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/coco/vipnas_coco.yml +++ b/configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/coco/vipnas_coco.yml @@ -1,18 +1,17 @@ Collections: -- Metadata: - Architecture: - - ViPNAS - Name: body--2d_kpt_sview_rgb_img--topdown_heatmap--coco--vipnas_coco [ViPNAS@COCO] +- Name: ViPNAS Paper: Title: 'ViPNAS: Efficient Video Pose Estimation via Neural Architecture Search' URL: https://arxiv.org/abs/2105.10154 - README: configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/coco/vipnas_coco.md Models: - Config: configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/coco/vipnas_res50_coco_256x192.py - In Collection: body--2d_kpt_sview_rgb_img--topdown_heatmap--coco--vipnas_coco [ViPNAS@COCO] + In Collection: ViPNAS Metadata: + Architecture: + - ViPNAS Training Data: COCO Name: topdown_heatmap_vipnas_res50_coco_256x192 + README: configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/coco/vipnas_coco.md Results: - Dataset: COCO Metrics: diff --git a/configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/crowdpose/hrnet_crowdpose.yml b/configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/crowdpose/hrnet_crowdpose.yml index 985f5001b4..5e751ba1d8 100644 --- a/configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/crowdpose/hrnet_crowdpose.yml +++ b/configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/crowdpose/hrnet_crowdpose.yml @@ -1,19 +1,17 @@ Collections: -- Metadata: - Architecture: - - HRNet - Name: body--2d_kpt_sview_rgb_img--topdown_heatmap--crowdpose--hrnet_crowdpose [HRNet@CrowdPose] +- Name: HRNet Paper: Title: Deep high-resolution representation learning for human pose estimation URL: http://openaccess.thecvf.com/content_CVPR_2019/html/Sun_Deep_High-Resolution_Representation_Learning_for_Human_Pose_Estimation_CVPR_2019_paper.html - README: configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/crowdpose/hrnet_crowdpose.md Models: - Config: configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/crowdpose/hrnet_w32_crowdpose_256x192.py - In Collection: body--2d_kpt_sview_rgb_img--topdown_heatmap--crowdpose--hrnet_crowdpose - [HRNet@CrowdPose] + In Collection: HRNet Metadata: + Architecture: + - HRNet Training Data: CrowdPose Name: topdown_heatmap_hrnet_w32_crowdpose_256x192 + README: configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/crowdpose/hrnet_crowdpose.md Results: - Dataset: CrowdPose Metrics: diff --git a/configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/crowdpose/resnet_crowdpose.yml b/configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/crowdpose/resnet_crowdpose.yml index 85b71c99f9..9a9ab8f901 100644 --- a/configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/crowdpose/resnet_crowdpose.yml +++ b/configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/crowdpose/resnet_crowdpose.yml @@ -1,20 +1,18 @@ Collections: -- Metadata: - Architecture: - - SimpleBaseline2D - - ResNet - Name: body--2d_kpt_sview_rgb_img--topdown_heatmap--crowdpose--resnet_crowdpose [SimpleBaseline2D+ResNet@CrowdPose] +- Name: SimpleBaseline2D Paper: Title: Simple baselines for human pose estimation and tracking URL: http://openaccess.thecvf.com/content_ECCV_2018/html/Bin_Xiao_Simple_Baselines_for_ECCV_2018_paper.html - README: configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/crowdpose/resnet_crowdpose.md Models: - Config: configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/crowdpose/res50_crowdpose_256x192.py - In Collection: body--2d_kpt_sview_rgb_img--topdown_heatmap--crowdpose--resnet_crowdpose - [SimpleBaseline2D+ResNet@CrowdPose] + In Collection: SimpleBaseline2D Metadata: + Architecture: &id001 + - SimpleBaseline2D + - ResNet Training Data: CrowdPose Name: topdown_heatmap_res50_crowdpose_256x192 + README: configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/crowdpose/resnet_crowdpose.md Results: - Dataset: CrowdPose Metrics: @@ -27,11 +25,12 @@ Models: Task: Body 2D Keypoint Weights: https://download.openmmlab.com/mmpose/top_down/resnet/res50_crowdpose_256x192-c6a526b6_20201227.pth - Config: configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/crowdpose/res101_crowdpose_256x192.py - In Collection: body--2d_kpt_sview_rgb_img--topdown_heatmap--crowdpose--resnet_crowdpose - [SimpleBaseline2D+ResNet@CrowdPose] + In Collection: SimpleBaseline2D Metadata: + Architecture: *id001 Training Data: CrowdPose Name: topdown_heatmap_res101_crowdpose_256x192 + README: configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/crowdpose/resnet_crowdpose.md Results: - Dataset: CrowdPose Metrics: @@ -44,11 +43,12 @@ Models: Task: Body 2D Keypoint Weights: https://download.openmmlab.com/mmpose/top_down/resnet/res101_crowdpose_256x192-8f5870f4_20201227.pth - Config: configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/crowdpose/res101_crowdpose_320x256.py - In Collection: body--2d_kpt_sview_rgb_img--topdown_heatmap--crowdpose--resnet_crowdpose - [SimpleBaseline2D+ResNet@CrowdPose] + In Collection: SimpleBaseline2D Metadata: + Architecture: *id001 Training Data: CrowdPose Name: topdown_heatmap_res101_crowdpose_320x256 + README: configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/crowdpose/resnet_crowdpose.md Results: - Dataset: CrowdPose Metrics: @@ -61,11 +61,12 @@ Models: Task: Body 2D Keypoint Weights: https://download.openmmlab.com/mmpose/top_down/resnet/res101_crowdpose_320x256-c88c512a_20201227.pth - Config: configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/crowdpose/res152_crowdpose_256x192.py - In Collection: body--2d_kpt_sview_rgb_img--topdown_heatmap--crowdpose--resnet_crowdpose - [SimpleBaseline2D+ResNet@CrowdPose] + In Collection: SimpleBaseline2D Metadata: + Architecture: *id001 Training Data: CrowdPose Name: topdown_heatmap_res152_crowdpose_256x192 + README: configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/crowdpose/resnet_crowdpose.md Results: - Dataset: CrowdPose Metrics: diff --git a/configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/h36m/hrnet_h36m.yml b/configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/h36m/hrnet_h36m.yml index cb9bc69428..6b6c7031be 100644 --- a/configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/h36m/hrnet_h36m.yml +++ b/configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/h36m/hrnet_h36m.yml @@ -1,18 +1,17 @@ Collections: -- Metadata: - Architecture: - - HRNet - Name: body--2d_kpt_sview_rgb_img--topdown_heatmap--h36m--hrnet_h36m [HRNet@Human3.6M] +- Name: HRNet Paper: Title: Deep high-resolution representation learning for human pose estimation URL: http://openaccess.thecvf.com/content_CVPR_2019/html/Sun_Deep_High-Resolution_Representation_Learning_for_Human_Pose_Estimation_CVPR_2019_paper.html - README: configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/h36m/hrnet_h36m.md Models: - Config: configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/h36m/hrnet_w32_h36m_256x256.py - In Collection: body--2d_kpt_sview_rgb_img--topdown_heatmap--h36m--hrnet_h36m [HRNet@Human3.6M] + In Collection: HRNet Metadata: + Architecture: &id001 + - HRNet Training Data: Human3.6M Name: topdown_heatmap_hrnet_w32_h36m_256x256 + README: configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/h36m/hrnet_h36m.md Results: - Dataset: Human3.6M Metrics: @@ -21,10 +20,12 @@ Models: Task: Body 2D Keypoint Weights: https://download.openmmlab.com/mmpose/top_down/hrnet/hrnet_w32_h36m_256x256-d3206675_20210621.pth - Config: configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/h36m/hrnet_w48_h36m_256x256.py - In Collection: body--2d_kpt_sview_rgb_img--topdown_heatmap--h36m--hrnet_h36m [HRNet@Human3.6M] + In Collection: HRNet Metadata: + Architecture: *id001 Training Data: Human3.6M Name: topdown_heatmap_hrnet_w48_h36m_256x256 + README: configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/h36m/hrnet_h36m.md Results: - Dataset: Human3.6M Metrics: diff --git a/configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/jhmdb/cpm_jhmdb.yml b/configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/jhmdb/cpm_jhmdb.yml index 4676ee8b76..5cd85a3815 100644 --- a/configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/jhmdb/cpm_jhmdb.yml +++ b/configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/jhmdb/cpm_jhmdb.yml @@ -1,18 +1,17 @@ Collections: -- Metadata: - Architecture: - - CPM - Name: body--2d_kpt_sview_rgb_img--topdown_heatmap--jhmdb--cpm_jhmdb [CPM@JHMDB] +- Name: CPM Paper: Title: Convolutional pose machines URL: http://openaccess.thecvf.com/content_cvpr_2016/html/Wei_Convolutional_Pose_Machines_CVPR_2016_paper.html - README: configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/jhmdb/cpm_jhmdb.md Models: - Config: configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/jhmdb/cpm_jhmdb_sub1_368x368.py - In Collection: body--2d_kpt_sview_rgb_img--topdown_heatmap--jhmdb--cpm_jhmdb [CPM@JHMDB] + In Collection: CPM Metadata: + Architecture: &id001 + - CPM Training Data: JHMDB Name: topdown_heatmap_cpm_jhmdb_sub1_368x368 + README: configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/jhmdb/cpm_jhmdb.md Results: - Dataset: JHMDB Metrics: @@ -27,10 +26,12 @@ Models: Task: Body 2D Keypoint Weights: https://download.openmmlab.com/mmpose/top_down/cpm/cpm_jhmdb_sub1_368x368-2d2585c9_20201122.pth - Config: configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/jhmdb/cpm_jhmdb_sub2_368x368.py - In Collection: body--2d_kpt_sview_rgb_img--topdown_heatmap--jhmdb--cpm_jhmdb [CPM@JHMDB] + In Collection: CPM Metadata: + Architecture: *id001 Training Data: JHMDB Name: topdown_heatmap_cpm_jhmdb_sub2_368x368 + README: configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/jhmdb/cpm_jhmdb.md Results: - Dataset: JHMDB Metrics: @@ -45,10 +46,12 @@ Models: Task: Body 2D Keypoint Weights: https://download.openmmlab.com/mmpose/top_down/cpm/cpm_jhmdb_sub2_368x368-fc742f1f_20201122.pth - Config: configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/jhmdb/cpm_jhmdb_sub3_368x368.py - In Collection: body--2d_kpt_sview_rgb_img--topdown_heatmap--jhmdb--cpm_jhmdb [CPM@JHMDB] + In Collection: CPM Metadata: + Architecture: *id001 Training Data: JHMDB Name: topdown_heatmap_cpm_jhmdb_sub3_368x368 + README: configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/jhmdb/cpm_jhmdb.md Results: - Dataset: JHMDB Metrics: @@ -63,10 +66,12 @@ Models: Task: Body 2D Keypoint Weights: https://download.openmmlab.com/mmpose/top_down/cpm/cpm_jhmdb_sub3_368x368-49337155_20201122.pth - Config: configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/jhmdb/cpm_jhmdb_sub1_368x368.py - In Collection: body--2d_kpt_sview_rgb_img--topdown_heatmap--jhmdb--cpm_jhmdb [CPM@JHMDB] + In Collection: CPM Metadata: + Architecture: *id001 Training Data: JHMDB Name: topdown_heatmap_cpm_jhmdb_sub1_368x368 + README: configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/jhmdb/cpm_jhmdb.md Results: - Dataset: JHMDB Metrics: @@ -81,10 +86,12 @@ Models: Task: Body 2D Keypoint Weights: https://download.openmmlab.com/mmpose/top_down/cpm/cpm_jhmdb_sub1_368x368-2d2585c9_20201122.pth - Config: configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/jhmdb/cpm_jhmdb_sub2_368x368.py - In Collection: body--2d_kpt_sview_rgb_img--topdown_heatmap--jhmdb--cpm_jhmdb [CPM@JHMDB] + In Collection: CPM Metadata: + Architecture: *id001 Training Data: JHMDB Name: topdown_heatmap_cpm_jhmdb_sub2_368x368 + README: configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/jhmdb/cpm_jhmdb.md Results: - Dataset: JHMDB Metrics: @@ -99,10 +106,12 @@ Models: Task: Body 2D Keypoint Weights: https://download.openmmlab.com/mmpose/top_down/cpm/cpm_jhmdb_sub2_368x368-fc742f1f_20201122.pth - Config: configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/jhmdb/cpm_jhmdb_sub3_368x368.py - In Collection: body--2d_kpt_sview_rgb_img--topdown_heatmap--jhmdb--cpm_jhmdb [CPM@JHMDB] + In Collection: CPM Metadata: + Architecture: *id001 Training Data: JHMDB Name: topdown_heatmap_cpm_jhmdb_sub3_368x368 + README: configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/jhmdb/cpm_jhmdb.md Results: - Dataset: JHMDB Metrics: diff --git a/configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/jhmdb/resnet_jhmdb.yml b/configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/jhmdb/resnet_jhmdb.yml index 3d013cc254..b26ef59a51 100644 --- a/configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/jhmdb/resnet_jhmdb.yml +++ b/configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/jhmdb/resnet_jhmdb.yml @@ -1,20 +1,18 @@ Collections: -- Metadata: - Architecture: - - SimpleBaseline2D - - ResNet - Name: body--2d_kpt_sview_rgb_img--topdown_heatmap--jhmdb--resnet_jhmdb [SimpleBaseline2D+ResNet@JHMDB] +- Name: SimpleBaseline2D Paper: Title: Simple baselines for human pose estimation and tracking URL: http://openaccess.thecvf.com/content_ECCV_2018/html/Bin_Xiao_Simple_Baselines_for_ECCV_2018_paper.html - README: configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/jhmdb/resnet_jhmdb.md Models: - Config: configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/jhmdb/res50_jhmdb_sub1_256x256.py - In Collection: body--2d_kpt_sview_rgb_img--topdown_heatmap--jhmdb--resnet_jhmdb - [SimpleBaseline2D+ResNet@JHMDB] + In Collection: SimpleBaseline2D Metadata: + Architecture: &id001 + - SimpleBaseline2D + - ResNet Training Data: JHMDB Name: topdown_heatmap_res50_jhmdb_sub1_256x256 + README: configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/jhmdb/resnet_jhmdb.md Results: - Dataset: JHMDB Metrics: @@ -29,11 +27,12 @@ Models: Task: Body 2D Keypoint Weights: https://download.openmmlab.com/mmpose/top_down/resnet/res50_jhmdb_sub1_256x256-932cb3b4_20201122.pth - Config: configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/jhmdb/res50_jhmdb_sub2_256x256.py - In Collection: body--2d_kpt_sview_rgb_img--topdown_heatmap--jhmdb--resnet_jhmdb - [SimpleBaseline2D+ResNet@JHMDB] + In Collection: SimpleBaseline2D Metadata: + Architecture: *id001 Training Data: JHMDB Name: topdown_heatmap_res50_jhmdb_sub2_256x256 + README: configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/jhmdb/resnet_jhmdb.md Results: - Dataset: JHMDB Metrics: @@ -48,11 +47,12 @@ Models: Task: Body 2D Keypoint Weights: https://download.openmmlab.com/mmpose/top_down/resnet/res50_jhmdb_sub2_256x256-83d606f7_20201122.pth - Config: configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/jhmdb/res50_jhmdb_sub3_256x256.py - In Collection: body--2d_kpt_sview_rgb_img--topdown_heatmap--jhmdb--resnet_jhmdb - [SimpleBaseline2D+ResNet@JHMDB] + In Collection: SimpleBaseline2D Metadata: + Architecture: *id001 Training Data: JHMDB Name: topdown_heatmap_res50_jhmdb_sub3_256x256 + README: configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/jhmdb/resnet_jhmdb.md Results: - Dataset: JHMDB Metrics: @@ -67,11 +67,12 @@ Models: Task: Body 2D Keypoint Weights: https://download.openmmlab.com/mmpose/top_down/resnet/res50_jhmdb_sub3_256x256-c4ec1a0b_20201122.pth - Config: configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/jhmdb/res50_2deconv_jhmdb_sub1_256x256.py - In Collection: body--2d_kpt_sview_rgb_img--topdown_heatmap--jhmdb--resnet_jhmdb - [SimpleBaseline2D+ResNet@JHMDB] + In Collection: SimpleBaseline2D Metadata: + Architecture: *id001 Training Data: JHMDB Name: topdown_heatmap_res50_2deconv_jhmdb_sub1_256x256 + README: configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/jhmdb/resnet_jhmdb.md Results: - Dataset: JHMDB Metrics: @@ -86,11 +87,12 @@ Models: Task: Body 2D Keypoint Weights: https://download.openmmlab.com/mmpose/top_down/resnet/res50_2deconv_jhmdb_sub1_256x256-f0574a52_20201122.pth - Config: configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/jhmdb/res50_2deconv_jhmdb_sub2_256x256.py - In Collection: body--2d_kpt_sview_rgb_img--topdown_heatmap--jhmdb--resnet_jhmdb - [SimpleBaseline2D+ResNet@JHMDB] + In Collection: SimpleBaseline2D Metadata: + Architecture: *id001 Training Data: JHMDB Name: topdown_heatmap_res50_2deconv_jhmdb_sub2_256x256 + README: configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/jhmdb/resnet_jhmdb.md Results: - Dataset: JHMDB Metrics: @@ -105,11 +107,12 @@ Models: Task: Body 2D Keypoint Weights: https://download.openmmlab.com/mmpose/top_down/resnet/res50_2deconv_jhmdb_sub2_256x256-f63af0ff_20201122.pth - Config: configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/jhmdb/res50_2deconv_jhmdb_sub3_256x256.py - In Collection: body--2d_kpt_sview_rgb_img--topdown_heatmap--jhmdb--resnet_jhmdb - [SimpleBaseline2D+ResNet@JHMDB] + In Collection: SimpleBaseline2D Metadata: + Architecture: *id001 Training Data: JHMDB Name: topdown_heatmap_res50_2deconv_jhmdb_sub3_256x256 + README: configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/jhmdb/resnet_jhmdb.md Results: - Dataset: JHMDB Metrics: @@ -124,11 +127,12 @@ Models: Task: Body 2D Keypoint Weights: https://download.openmmlab.com/mmpose/top_down/resnet/res50_2deconv_jhmdb_sub3_256x256-c4bc2ddb_20201122.pth - Config: configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/jhmdb/res50_jhmdb_sub1_256x256.py - In Collection: body--2d_kpt_sview_rgb_img--topdown_heatmap--jhmdb--resnet_jhmdb - [SimpleBaseline2D+ResNet@JHMDB] + In Collection: SimpleBaseline2D Metadata: + Architecture: *id001 Training Data: JHMDB Name: topdown_heatmap_res50_jhmdb_sub1_256x256 + README: configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/jhmdb/resnet_jhmdb.md Results: - Dataset: JHMDB Metrics: @@ -143,11 +147,12 @@ Models: Task: Body 2D Keypoint Weights: https://download.openmmlab.com/mmpose/top_down/resnet/res50_jhmdb_sub1_256x256-932cb3b4_20201122.pth - Config: configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/jhmdb/res50_jhmdb_sub2_256x256.py - In Collection: body--2d_kpt_sview_rgb_img--topdown_heatmap--jhmdb--resnet_jhmdb - [SimpleBaseline2D+ResNet@JHMDB] + In Collection: SimpleBaseline2D Metadata: + Architecture: *id001 Training Data: JHMDB Name: topdown_heatmap_res50_jhmdb_sub2_256x256 + README: configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/jhmdb/resnet_jhmdb.md Results: - Dataset: JHMDB Metrics: @@ -162,11 +167,12 @@ Models: Task: Body 2D Keypoint Weights: https://download.openmmlab.com/mmpose/top_down/resnet/res50_jhmdb_sub2_256x256-83d606f7_20201122.pth - Config: configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/jhmdb/res50_jhmdb_sub3_256x256.py - In Collection: body--2d_kpt_sview_rgb_img--topdown_heatmap--jhmdb--resnet_jhmdb - [SimpleBaseline2D+ResNet@JHMDB] + In Collection: SimpleBaseline2D Metadata: + Architecture: *id001 Training Data: JHMDB Name: topdown_heatmap_res50_jhmdb_sub3_256x256 + README: configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/jhmdb/resnet_jhmdb.md Results: - Dataset: JHMDB Metrics: @@ -181,11 +187,12 @@ Models: Task: Body 2D Keypoint Weights: https://download.openmmlab.com/mmpose/top_down/resnet/res50_jhmdb_sub3_256x256-c4ec1a0b_20201122.pth - Config: configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/jhmdb/res50_2deconv_jhmdb_sub1_256x256.py - In Collection: body--2d_kpt_sview_rgb_img--topdown_heatmap--jhmdb--resnet_jhmdb - [SimpleBaseline2D+ResNet@JHMDB] + In Collection: SimpleBaseline2D Metadata: + Architecture: *id001 Training Data: JHMDB Name: topdown_heatmap_res50_2deconv_jhmdb_sub1_256x256 + README: configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/jhmdb/resnet_jhmdb.md Results: - Dataset: JHMDB Metrics: @@ -200,11 +207,12 @@ Models: Task: Body 2D Keypoint Weights: https://download.openmmlab.com/mmpose/top_down/resnet/res50_2deconv_jhmdb_sub1_256x256-f0574a52_20201122.pth - Config: configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/jhmdb/res50_2deconv_jhmdb_sub2_256x256.py - In Collection: body--2d_kpt_sview_rgb_img--topdown_heatmap--jhmdb--resnet_jhmdb - [SimpleBaseline2D+ResNet@JHMDB] + In Collection: SimpleBaseline2D Metadata: + Architecture: *id001 Training Data: JHMDB Name: topdown_heatmap_res50_2deconv_jhmdb_sub2_256x256 + README: configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/jhmdb/resnet_jhmdb.md Results: - Dataset: JHMDB Metrics: @@ -219,11 +227,12 @@ Models: Task: Body 2D Keypoint Weights: https://download.openmmlab.com/mmpose/top_down/resnet/res50_2deconv_jhmdb_sub2_256x256-f63af0ff_20201122.pth - Config: configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/jhmdb/res50_2deconv_jhmdb_sub3_256x256.py - In Collection: body--2d_kpt_sview_rgb_img--topdown_heatmap--jhmdb--resnet_jhmdb - [SimpleBaseline2D+ResNet@JHMDB] + In Collection: SimpleBaseline2D Metadata: + Architecture: *id001 Training Data: JHMDB Name: topdown_heatmap_res50_2deconv_jhmdb_sub3_256x256 + README: configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/jhmdb/resnet_jhmdb.md Results: - Dataset: JHMDB Metrics: diff --git a/configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/mhp/resnet_mhp.yml b/configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/mhp/resnet_mhp.yml index 1fb4a344ef..fa52926a2b 100644 --- a/configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/mhp/resnet_mhp.yml +++ b/configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/mhp/resnet_mhp.yml @@ -1,19 +1,18 @@ Collections: -- Metadata: - Architecture: - - SimpleBaseline2D - - ResNet - Name: body--2d_kpt_sview_rgb_img--topdown_heatmap--mhp--resnet_mhp [SimpleBaseline2D+ResNet@MHP] +- Name: SimpleBaseline2D Paper: Title: Simple baselines for human pose estimation and tracking URL: http://openaccess.thecvf.com/content_ECCV_2018/html/Bin_Xiao_Simple_Baselines_for_ECCV_2018_paper.html - README: configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/mhp/resnet_mhp.md Models: - Config: configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/mhp/res50_mhp_256x192.py - In Collection: body--2d_kpt_sview_rgb_img--topdown_heatmap--mhp--resnet_mhp [SimpleBaseline2D+ResNet@MHP] + In Collection: SimpleBaseline2D Metadata: + Architecture: + - SimpleBaseline2D + - ResNet Training Data: MHP Name: topdown_heatmap_res50_mhp_256x192 + README: configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/mhp/resnet_mhp.md Results: - Dataset: MHP Metrics: diff --git a/configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/mpii/cpm_mpii.yml b/configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/mpii/cpm_mpii.yml index 20652fbf22..0dbd4f9ab0 100644 --- a/configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/mpii/cpm_mpii.yml +++ b/configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/mpii/cpm_mpii.yml @@ -1,18 +1,17 @@ Collections: -- Metadata: - Architecture: - - CPM - Name: body--2d_kpt_sview_rgb_img--topdown_heatmap--mpii--cpm_mpii [CPM@MPII] +- Name: CPM Paper: Title: Convolutional pose machines URL: http://openaccess.thecvf.com/content_cvpr_2016/html/Wei_Convolutional_Pose_Machines_CVPR_2016_paper.html - README: configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/mpii/cpm_mpii.md Models: - Config: configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/mpii/cpm_mpii_368x368.py - In Collection: body--2d_kpt_sview_rgb_img--topdown_heatmap--mpii--cpm_mpii [CPM@MPII] + In Collection: CPM Metadata: + Architecture: + - CPM Training Data: MPII Name: topdown_heatmap_cpm_mpii_368x368 + README: configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/mpii/cpm_mpii.md Results: - Dataset: MPII Metrics: diff --git a/configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/mpii/hourglass_mpii.yml b/configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/mpii/hourglass_mpii.yml index 786df56090..3a28d055c8 100644 --- a/configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/mpii/hourglass_mpii.yml +++ b/configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/mpii/hourglass_mpii.yml @@ -1,19 +1,17 @@ Collections: -- Metadata: - Architecture: - - Hourglass - Name: body--2d_kpt_sview_rgb_img--topdown_heatmap--mpii--hourglass_mpii [Hourglass@MPII] +- Name: Hourglass Paper: Title: Stacked hourglass networks for human pose estimation URL: https://link.springer.com/chapter/10.1007/978-3-319-46484-8_29 - README: configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/mpii/hourglass_mpii.md Models: - Config: configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/mpii/hourglass52_mpii_256x256.py - In Collection: body--2d_kpt_sview_rgb_img--topdown_heatmap--mpii--hourglass_mpii - [Hourglass@MPII] + In Collection: Hourglass Metadata: + Architecture: &id001 + - Hourglass Training Data: MPII Name: topdown_heatmap_hourglass52_mpii_256x256 + README: configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/mpii/hourglass_mpii.md Results: - Dataset: MPII Metrics: @@ -22,11 +20,12 @@ Models: Task: Body 2D Keypoint Weights: https://download.openmmlab.com/mmpose/top_down/hourglass/hourglass52_mpii_256x256-ae358435_20200812.pth - Config: configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/mpii/hourglass52_mpii_384x384.py - In Collection: body--2d_kpt_sview_rgb_img--topdown_heatmap--mpii--hourglass_mpii - [Hourglass@MPII] + In Collection: Hourglass Metadata: + Architecture: *id001 Training Data: MPII Name: topdown_heatmap_hourglass52_mpii_384x384 + README: configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/mpii/hourglass_mpii.md Results: - Dataset: MPII Metrics: diff --git a/configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/mpii/hrnet_dark_mpii.yml b/configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/mpii/hrnet_dark_mpii.yml index 2228335d9d..8430405c3e 100644 --- a/configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/mpii/hrnet_dark_mpii.yml +++ b/configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/mpii/hrnet_dark_mpii.yml @@ -1,20 +1,18 @@ Collections: -- Metadata: - Architecture: - - HRNet - - DarkPose - Name: body--2d_kpt_sview_rgb_img--topdown_heatmap--mpii--hrnet_dark_mpii [HRNet+DarkPose@MPII] +- Name: DarkPose Paper: Title: Distribution-aware coordinate representation for human pose estimation URL: http://openaccess.thecvf.com/content_CVPR_2020/html/Zhang_Distribution-Aware_Coordinate_Representation_for_Human_Pose_Estimation_CVPR_2020_paper.html - README: configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/mpii/hrnet_dark_mpii.md Models: - Config: configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/mpii/hrnet_w32_mpii_256x256_dark.py - In Collection: body--2d_kpt_sview_rgb_img--topdown_heatmap--mpii--hrnet_dark_mpii - [HRNet+DarkPose@MPII] + In Collection: DarkPose Metadata: + Architecture: &id001 + - HRNet + - DarkPose Training Data: MPII Name: topdown_heatmap_hrnet_w32_mpii_256x256_dark + README: configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/mpii/hrnet_dark_mpii.md Results: - Dataset: MPII Metrics: @@ -23,11 +21,12 @@ Models: Task: Body 2D Keypoint Weights: https://download.openmmlab.com/mmpose/top_down/hrnet/hrnet_w32_mpii_256x256_dark-f1601c5b_20200927.pth - Config: configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/mpii/hrnet_w48_mpii_256x256_dark.py - In Collection: body--2d_kpt_sview_rgb_img--topdown_heatmap--mpii--hrnet_dark_mpii - [HRNet+DarkPose@MPII] + In Collection: DarkPose Metadata: + Architecture: *id001 Training Data: MPII Name: topdown_heatmap_hrnet_w48_mpii_256x256_dark + README: configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/mpii/hrnet_dark_mpii.md Results: - Dataset: MPII Metrics: diff --git a/configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/mpii/hrnet_mpii.yml b/configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/mpii/hrnet_mpii.yml index 6bea14891c..f30c2e06d8 100644 --- a/configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/mpii/hrnet_mpii.yml +++ b/configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/mpii/hrnet_mpii.yml @@ -1,18 +1,17 @@ Collections: -- Metadata: - Architecture: - - HRNet - Name: body--2d_kpt_sview_rgb_img--topdown_heatmap--mpii--hrnet_mpii [HRNet@MPII] +- Name: HRNet Paper: Title: Deep high-resolution representation learning for human pose estimation URL: http://openaccess.thecvf.com/content_CVPR_2019/html/Sun_Deep_High-Resolution_Representation_Learning_for_Human_Pose_Estimation_CVPR_2019_paper.html - README: configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/mpii/hrnet_mpii.md Models: - Config: configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/mpii/hrnet_w32_mpii_256x256.py - In Collection: body--2d_kpt_sview_rgb_img--topdown_heatmap--mpii--hrnet_mpii [HRNet@MPII] + In Collection: HRNet Metadata: + Architecture: &id001 + - HRNet Training Data: MPII Name: topdown_heatmap_hrnet_w32_mpii_256x256 + README: configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/mpii/hrnet_mpii.md Results: - Dataset: MPII Metrics: @@ -21,10 +20,12 @@ Models: Task: Body 2D Keypoint Weights: https://download.openmmlab.com/mmpose/top_down/hrnet/hrnet_w32_mpii_256x256-6c4f923f_20200812.pth - Config: configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/mpii/hrnet_w48_mpii_256x256.py - In Collection: body--2d_kpt_sview_rgb_img--topdown_heatmap--mpii--hrnet_mpii [HRNet@MPII] + In Collection: HRNet Metadata: + Architecture: *id001 Training Data: MPII Name: topdown_heatmap_hrnet_w48_mpii_256x256 + README: configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/mpii/hrnet_mpii.md Results: - Dataset: MPII Metrics: diff --git a/configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/mpii/litehrnet_mpii.yml b/configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/mpii/litehrnet_mpii.yml index 0e6a8b482d..d482399236 100644 --- a/configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/mpii/litehrnet_mpii.yml +++ b/configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/mpii/litehrnet_mpii.yml @@ -1,19 +1,17 @@ Collections: -- Metadata: - Architecture: - - LiteHRNet - Name: body--2d_kpt_sview_rgb_img--topdown_heatmap--mpii--litehrnet_mpii [LiteHRNet@MPII] +- Name: LiteHRNet Paper: Title: 'Lite-HRNet: A Lightweight High-Resolution Network' URL: https://arxiv.org/abs/2104.06403 - README: configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/mpii/litehrnet_mpii.md Models: - Config: configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/mpii/litehrnet_18_mpii_256x256.py - In Collection: body--2d_kpt_sview_rgb_img--topdown_heatmap--mpii--litehrnet_mpii - [LiteHRNet@MPII] + In Collection: LiteHRNet Metadata: + Architecture: &id001 + - LiteHRNet Training Data: MPII Name: topdown_heatmap_litehrnet_18_mpii_256x256 + README: configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/mpii/litehrnet_mpii.md Results: - Dataset: MPII Metrics: @@ -22,11 +20,12 @@ Models: Task: Body 2D Keypoint Weights: https://download.openmmlab.com/mmpose/top_down/litehrnet/litehrnet18_mpii_256x256-cabd7984_20210623.pth - Config: configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/mpii/litehrnet_30_mpii_256x256.py - In Collection: body--2d_kpt_sview_rgb_img--topdown_heatmap--mpii--litehrnet_mpii - [LiteHRNet@MPII] + In Collection: LiteHRNet Metadata: + Architecture: *id001 Training Data: MPII Name: topdown_heatmap_litehrnet_30_mpii_256x256 + README: configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/mpii/litehrnet_mpii.md Results: - Dataset: MPII Metrics: diff --git a/configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/mpii/mobilenetv2_mpii.yml b/configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/mpii/mobilenetv2_mpii.yml index e338a0e475..e7225222ff 100644 --- a/configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/mpii/mobilenetv2_mpii.yml +++ b/configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/mpii/mobilenetv2_mpii.yml @@ -1,19 +1,17 @@ Collections: -- Metadata: - Architecture: - - MobilenetV2 - Name: body--2d_kpt_sview_rgb_img--topdown_heatmap--mpii--mobilenetv2_mpii [MobilenetV2@MPII] +- Name: MobilenetV2 Paper: Title: 'Mobilenetv2: Inverted residuals and linear bottlenecks' URL: http://openaccess.thecvf.com/content_cvpr_2018/html/Sandler_MobileNetV2_Inverted_Residuals_CVPR_2018_paper.html - README: configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/mpii/mobilenetv2_mpii.md Models: - Config: configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/mobilenet_v2/mpii/mobilenet_v2_mpii_256x256.py - In Collection: body--2d_kpt_sview_rgb_img--topdown_heatmap--mpii--mobilenetv2_mpii - [MobilenetV2@MPII] + In Collection: MobilenetV2 Metadata: + Architecture: + - MobilenetV2 Training Data: MPII Name: topdown_heatmap_mpii + README: configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/mpii/mobilenetv2_mpii.md Results: - Dataset: MPII Metrics: diff --git a/configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/mpii/resnet_mpii.yml b/configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/mpii/resnet_mpii.yml index 287d31908f..4887d039f1 100644 --- a/configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/mpii/resnet_mpii.yml +++ b/configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/mpii/resnet_mpii.yml @@ -1,19 +1,18 @@ Collections: -- Metadata: - Architecture: - - SimpleBaseline2D - - ResNet - Name: body--2d_kpt_sview_rgb_img--topdown_heatmap--mpii--resnet_mpii [SimpleBaseline2D+ResNet@MPII] +- Name: SimpleBaseline2D Paper: Title: Simple baselines for human pose estimation and tracking URL: http://openaccess.thecvf.com/content_ECCV_2018/html/Bin_Xiao_Simple_Baselines_for_ECCV_2018_paper.html - README: configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/mpii/resnet_mpii.md Models: - Config: configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/mpii/res50_mpii_256x256.py - In Collection: body--2d_kpt_sview_rgb_img--topdown_heatmap--mpii--resnet_mpii [SimpleBaseline2D+ResNet@MPII] + In Collection: SimpleBaseline2D Metadata: + Architecture: &id001 + - SimpleBaseline2D + - ResNet Training Data: MPII Name: topdown_heatmap_res50_mpii_256x256 + README: configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/mpii/resnet_mpii.md Results: - Dataset: MPII Metrics: @@ -22,10 +21,12 @@ Models: Task: Body 2D Keypoint Weights: https://download.openmmlab.com/mmpose/top_down/resnet/res50_mpii_256x256-418ffc88_20200812.pth - Config: configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/mpii/res101_mpii_256x256.py - In Collection: body--2d_kpt_sview_rgb_img--topdown_heatmap--mpii--resnet_mpii [SimpleBaseline2D+ResNet@MPII] + In Collection: SimpleBaseline2D Metadata: + Architecture: *id001 Training Data: MPII Name: topdown_heatmap_res101_mpii_256x256 + README: configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/mpii/resnet_mpii.md Results: - Dataset: MPII Metrics: @@ -34,10 +35,12 @@ Models: Task: Body 2D Keypoint Weights: https://download.openmmlab.com/mmpose/top_down/resnet/res101_mpii_256x256-416f5d71_20200812.pth - Config: configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/mpii/res152_mpii_256x256.py - In Collection: body--2d_kpt_sview_rgb_img--topdown_heatmap--mpii--resnet_mpii [SimpleBaseline2D+ResNet@MPII] + In Collection: SimpleBaseline2D Metadata: + Architecture: *id001 Training Data: MPII Name: topdown_heatmap_res152_mpii_256x256 + README: configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/mpii/resnet_mpii.md Results: - Dataset: MPII Metrics: diff --git a/configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/mpii/resnetv1d_mpii.yml b/configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/mpii/resnetv1d_mpii.yml index e2ebb9f91e..7f5f1f1978 100644 --- a/configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/mpii/resnetv1d_mpii.yml +++ b/configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/mpii/resnetv1d_mpii.yml @@ -1,19 +1,17 @@ Collections: -- Metadata: - Architecture: - - ResNetV1D - Name: body--2d_kpt_sview_rgb_img--topdown_heatmap--mpii--resnetv1d_mpii [ResNetV1D@MPII] +- Name: ResNetV1D Paper: Title: Bag of tricks for image classification with convolutional neural networks URL: http://openaccess.thecvf.com/content_CVPR_2019/html/He_Bag_of_Tricks_for_Image_Classification_with_Convolutional_Neural_Networks_CVPR_2019_paper.html - README: configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/mpii/resnetv1d_mpii.md Models: - Config: configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/mpii/resnetv1d50_mpii_256x256.py - In Collection: body--2d_kpt_sview_rgb_img--topdown_heatmap--mpii--resnetv1d_mpii - [ResNetV1D@MPII] + In Collection: ResNetV1D Metadata: + Architecture: &id001 + - ResNetV1D Training Data: MPII Name: topdown_heatmap_resnetv1d50_mpii_256x256 + README: configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/mpii/resnetv1d_mpii.md Results: - Dataset: MPII Metrics: @@ -22,11 +20,12 @@ Models: Task: Body 2D Keypoint Weights: https://download.openmmlab.com/mmpose/top_down/resnetv1d/resnetv1d50_mpii_256x256-2337a92e_20200812.pth - Config: configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/mpii/resnetv1d101_mpii_256x256.py - In Collection: body--2d_kpt_sview_rgb_img--topdown_heatmap--mpii--resnetv1d_mpii - [ResNetV1D@MPII] + In Collection: ResNetV1D Metadata: + Architecture: *id001 Training Data: MPII Name: topdown_heatmap_resnetv1d101_mpii_256x256 + README: configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/mpii/resnetv1d_mpii.md Results: - Dataset: MPII Metrics: @@ -35,11 +34,12 @@ Models: Task: Body 2D Keypoint Weights: https://download.openmmlab.com/mmpose/top_down/resnetv1d/resnetv1d101_mpii_256x256-2851d710_20200812.pth - Config: configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/mpii/resnetv1d152_mpii_256x256.py - In Collection: body--2d_kpt_sview_rgb_img--topdown_heatmap--mpii--resnetv1d_mpii - [ResNetV1D@MPII] + In Collection: ResNetV1D Metadata: + Architecture: *id001 Training Data: MPII Name: topdown_heatmap_resnetv1d152_mpii_256x256 + README: configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/mpii/resnetv1d_mpii.md Results: - Dataset: MPII Metrics: diff --git a/configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/mpii/resnext_mpii.yml b/configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/mpii/resnext_mpii.yml index 05e7b5e49d..4154ad1174 100644 --- a/configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/mpii/resnext_mpii.yml +++ b/configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/mpii/resnext_mpii.yml @@ -1,18 +1,17 @@ Collections: -- Metadata: - Architecture: - - ResNext - Name: body--2d_kpt_sview_rgb_img--topdown_heatmap--mpii--resnext_mpii [ResNext@MPII] +- Name: ResNext Paper: Title: Aggregated residual transformations for deep neural networks URL: http://openaccess.thecvf.com/content_cvpr_2017/html/Xie_Aggregated_Residual_Transformations_CVPR_2017_paper.html - README: configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/mpii/resnext_mpii.md Models: - Config: configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/mpii/resnext152_mpii_256x256.py - In Collection: body--2d_kpt_sview_rgb_img--topdown_heatmap--mpii--resnext_mpii [ResNext@MPII] + In Collection: ResNext Metadata: + Architecture: + - ResNext Training Data: MPII Name: topdown_heatmap_resnext152_mpii_256x256 + README: configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/mpii/resnext_mpii.md Results: - Dataset: MPII Metrics: diff --git a/configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/mpii/scnet_mpii.yml b/configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/mpii/scnet_mpii.yml index 8a1ca6c21e..309c1e12b5 100644 --- a/configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/mpii/scnet_mpii.yml +++ b/configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/mpii/scnet_mpii.yml @@ -1,18 +1,17 @@ Collections: -- Metadata: - Architecture: - - SCNet - Name: body--2d_kpt_sview_rgb_img--topdown_heatmap--mpii--scnet_mpii [SCNet@MPII] +- Name: SCNet Paper: Title: Improving Convolutional Networks with Self-Calibrated Convolutions URL: http://openaccess.thecvf.com/content_CVPR_2020/html/Liu_Improving_Convolutional_Networks_With_Self-Calibrated_Convolutions_CVPR_2020_paper.html - README: configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/mpii/scnet_mpii.md Models: - Config: configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/mpii/scnet50_mpii_256x256.py - In Collection: body--2d_kpt_sview_rgb_img--topdown_heatmap--mpii--scnet_mpii [SCNet@MPII] + In Collection: SCNet Metadata: + Architecture: &id001 + - SCNet Training Data: MPII Name: topdown_heatmap_scnet50_mpii_256x256 + README: configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/mpii/scnet_mpii.md Results: - Dataset: MPII Metrics: @@ -21,10 +20,12 @@ Models: Task: Body 2D Keypoint Weights: https://download.openmmlab.com/mmpose/top_down/scnet/scnet50_mpii_256x256-a54b6af5_20200812.pth - Config: configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/mpii/scnet101_mpii_256x256.py - In Collection: body--2d_kpt_sview_rgb_img--topdown_heatmap--mpii--scnet_mpii [SCNet@MPII] + In Collection: SCNet Metadata: + Architecture: *id001 Training Data: MPII Name: topdown_heatmap_scnet101_mpii_256x256 + README: configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/mpii/scnet_mpii.md Results: - Dataset: MPII Metrics: diff --git a/configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/mpii/seresnet_mpii.yml b/configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/mpii/seresnet_mpii.yml index 33b7cdbe4e..45609cb543 100644 --- a/configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/mpii/seresnet_mpii.yml +++ b/configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/mpii/seresnet_mpii.yml @@ -1,19 +1,17 @@ Collections: -- Metadata: - Architecture: - - SEResNet - Name: body--2d_kpt_sview_rgb_img--topdown_heatmap--mpii--seresnet_mpii [SEResNet@MPII] +- Name: SEResNet Paper: Title: Squeeze-and-excitation networks URL: http://openaccess.thecvf.com/content_cvpr_2018/html/Hu_Squeeze-and-Excitation_Networks_CVPR_2018_paper - README: configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/mpii/seresnet_mpii.md Models: - Config: configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/mpii/seresnet50_mpii_256x256.py - In Collection: body--2d_kpt_sview_rgb_img--topdown_heatmap--mpii--seresnet_mpii - [SEResNet@MPII] + In Collection: SEResNet Metadata: + Architecture: &id001 + - SEResNet Training Data: MPII Name: topdown_heatmap_seresnet50_mpii_256x256 + README: configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/mpii/seresnet_mpii.md Results: - Dataset: MPII Metrics: @@ -22,11 +20,12 @@ Models: Task: Body 2D Keypoint Weights: https://download.openmmlab.com/mmpose/top_down/seresnet/seresnet50_mpii_256x256-1bb21f79_20200927.pth - Config: configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/mpii/seresnet101_mpii_256x256.py - In Collection: body--2d_kpt_sview_rgb_img--topdown_heatmap--mpii--seresnet_mpii - [SEResNet@MPII] + In Collection: SEResNet Metadata: + Architecture: *id001 Training Data: MPII Name: topdown_heatmap_seresnet101_mpii_256x256 + README: configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/mpii/seresnet_mpii.md Results: - Dataset: MPII Metrics: @@ -35,11 +34,12 @@ Models: Task: Body 2D Keypoint Weights: https://download.openmmlab.com/mmpose/top_down/seresnet/seresnet101_mpii_256x256-0ba14ff5_20200927.pth - Config: configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/mpii/seresnet152_mpii_256x256.py - In Collection: body--2d_kpt_sview_rgb_img--topdown_heatmap--mpii--seresnet_mpii - [SEResNet@MPII] + In Collection: SEResNet Metadata: + Architecture: *id001 Training Data: MPII Name: topdown_heatmap_seresnet152_mpii_256x256 + README: configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/mpii/seresnet_mpii.md Results: - Dataset: MPII Metrics: diff --git a/configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/mpii/shufflenetv1_mpii.yml b/configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/mpii/shufflenetv1_mpii.yml index f160910316..8324e8acb0 100644 --- a/configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/mpii/shufflenetv1_mpii.yml +++ b/configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/mpii/shufflenetv1_mpii.yml @@ -1,20 +1,18 @@ Collections: -- Metadata: - Architecture: - - ShufflenetV1 - Name: body--2d_kpt_sview_rgb_img--topdown_heatmap--mpii--shufflenetv1_mpii [ShufflenetV1@MPII] +- Name: ShufflenetV1 Paper: Title: 'Shufflenet: An extremely efficient convolutional neural network for mobile devices' URL: http://openaccess.thecvf.com/content_cvpr_2018/html/Zhang_ShuffleNet_An_Extremely_CVPR_2018_paper.html - README: configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/mpii/shufflenetv1_mpii.md Models: - Config: configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/mpii/shufflenetv1_mpii_256x256.py - In Collection: body--2d_kpt_sview_rgb_img--topdown_heatmap--mpii--shufflenetv1_mpii - [ShufflenetV1@MPII] + In Collection: ShufflenetV1 Metadata: + Architecture: + - ShufflenetV1 Training Data: MPII Name: topdown_heatmap_shufflenetv1_mpii_256x256 + README: configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/mpii/shufflenetv1_mpii.md Results: - Dataset: MPII Metrics: diff --git a/configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/mpii/shufflenetv2_mpii.yml b/configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/mpii/shufflenetv2_mpii.yml index 9ce42b5fef..4f25758593 100644 --- a/configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/mpii/shufflenetv2_mpii.yml +++ b/configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/mpii/shufflenetv2_mpii.yml @@ -1,19 +1,17 @@ Collections: -- Metadata: - Architecture: - - ShufflenetV2 - Name: body--2d_kpt_sview_rgb_img--topdown_heatmap--mpii--shufflenetv2_mpii [ShufflenetV2@MPII] +- Name: ShufflenetV2 Paper: Title: 'Shufflenet v2: Practical guidelines for efficient cnn architecture design' URL: http://openaccess.thecvf.com/content_ECCV_2018/html/Ningning_Light-weight_CNN_Architecture_ECCV_2018_paper.html - README: configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/mpii/shufflenetv2_mpii.md Models: - Config: configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/mpii/shufflenetv2_mpii_256x256.py - In Collection: body--2d_kpt_sview_rgb_img--topdown_heatmap--mpii--shufflenetv2_mpii - [ShufflenetV2@MPII] + In Collection: ShufflenetV2 Metadata: + Architecture: + - ShufflenetV2 Training Data: MPII Name: topdown_heatmap_shufflenetv2_mpii_256x256 + README: configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/mpii/shufflenetv2_mpii.md Results: - Dataset: MPII Metrics: diff --git a/configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/mpii_trb/resnet_mpii_trb.yml b/configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/mpii_trb/resnet_mpii_trb.yml index 1810cbc4a0..e5ef340e2d 100644 --- a/configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/mpii_trb/resnet_mpii_trb.yml +++ b/configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/mpii_trb/resnet_mpii_trb.yml @@ -1,20 +1,18 @@ Collections: -- Metadata: - Architecture: - - SimpleBaseline2D - - ResNet - Name: body--2d_kpt_sview_rgb_img--topdown_heatmap--mpii_trb--resnet_mpii_trb [SimpleBaseline2D+ResNet@MPII-TRB] +- Name: SimpleBaseline2D Paper: Title: Simple baselines for human pose estimation and tracking URL: http://openaccess.thecvf.com/content_ECCV_2018/html/Bin_Xiao_Simple_Baselines_for_ECCV_2018_paper.html - README: configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/mpii_trb/resnet_mpii_trb.md Models: - Config: configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/mpii_trb/res50_mpii_trb_256x256.py - In Collection: body--2d_kpt_sview_rgb_img--topdown_heatmap--mpii_trb--resnet_mpii_trb - [SimpleBaseline2D+ResNet@MPII-TRB] + In Collection: SimpleBaseline2D Metadata: + Architecture: &id001 + - SimpleBaseline2D + - ResNet Training Data: MPII-TRB Name: topdown_heatmap_res50_mpii_trb_256x256 + README: configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/mpii_trb/resnet_mpii_trb.md Results: - Dataset: MPII-TRB Metrics: @@ -24,11 +22,12 @@ Models: Task: Body 2D Keypoint Weights: https://download.openmmlab.com/mmpose/top_down/resnet/res50_mpii_trb_256x256-896036b8_20200812.pth - Config: configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/mpii_trb/res101_mpii_trb_256x256.py - In Collection: body--2d_kpt_sview_rgb_img--topdown_heatmap--mpii_trb--resnet_mpii_trb - [SimpleBaseline2D+ResNet@MPII-TRB] + In Collection: SimpleBaseline2D Metadata: + Architecture: *id001 Training Data: MPII-TRB Name: topdown_heatmap_res101_mpii_trb_256x256 + README: configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/mpii_trb/resnet_mpii_trb.md Results: - Dataset: MPII-TRB Metrics: @@ -38,11 +37,12 @@ Models: Task: Body 2D Keypoint Weights: https://download.openmmlab.com/mmpose/top_down/resnet/res101_mpii_trb_256x256-cfad2f05_20200812.pth - Config: configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/mpii_trb/res152_mpii_trb_256x256.py - In Collection: body--2d_kpt_sview_rgb_img--topdown_heatmap--mpii_trb--resnet_mpii_trb - [SimpleBaseline2D+ResNet@MPII-TRB] + In Collection: SimpleBaseline2D Metadata: + Architecture: *id001 Training Data: MPII-TRB Name: topdown_heatmap_res152_mpii_trb_256x256 + README: configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/mpii_trb/resnet_mpii_trb.md Results: - Dataset: MPII-TRB Metrics: diff --git a/configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/ochuman/hrnet_ochuman.yml b/configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/ochuman/hrnet_ochuman.yml index b1a62cd028..39f6985159 100644 --- a/configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/ochuman/hrnet_ochuman.yml +++ b/configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/ochuman/hrnet_ochuman.yml @@ -1,19 +1,17 @@ Collections: -- Metadata: - Architecture: - - HRNet - Name: body--2d_kpt_sview_rgb_img--topdown_heatmap--ochuman--hrnet_ochuman [HRNet@OCHuman] +- Name: HRNet Paper: Title: Deep high-resolution representation learning for human pose estimation URL: http://openaccess.thecvf.com/content_CVPR_2019/html/Sun_Deep_High-Resolution_Representation_Learning_for_Human_Pose_Estimation_CVPR_2019_paper.html - README: configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/ochuman/hrnet_ochuman.md Models: - Config: configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/ochuman/hrnet_w32_ochuman_256x192.py - In Collection: body--2d_kpt_sview_rgb_img--topdown_heatmap--ochuman--hrnet_ochuman - [HRNet@OCHuman] + In Collection: HRNet Metadata: + Architecture: &id001 + - HRNet Training Data: OCHuman Name: topdown_heatmap_hrnet_w32_ochuman_256x192 + README: configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/ochuman/hrnet_ochuman.md Results: - Dataset: OCHuman Metrics: @@ -25,11 +23,12 @@ Models: Task: Body 2D Keypoint Weights: https://download.openmmlab.com/mmpose/top_down/hrnet/hrnet_w32_coco_256x192-c78dce93_20200708.pth - Config: configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/ochuman/hrnet_w32_ochuman_384x288.py - In Collection: body--2d_kpt_sview_rgb_img--topdown_heatmap--ochuman--hrnet_ochuman - [HRNet@OCHuman] + In Collection: HRNet Metadata: + Architecture: *id001 Training Data: OCHuman Name: topdown_heatmap_hrnet_w32_ochuman_384x288 + README: configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/ochuman/hrnet_ochuman.md Results: - Dataset: OCHuman Metrics: @@ -41,11 +40,12 @@ Models: Task: Body 2D Keypoint Weights: https://download.openmmlab.com/mmpose/top_down/hrnet/hrnet_w32_coco_384x288-d9f0d786_20200708.pth - Config: configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/ochuman/hrnet_w48_ochuman_256x192.py - In Collection: body--2d_kpt_sview_rgb_img--topdown_heatmap--ochuman--hrnet_ochuman - [HRNet@OCHuman] + In Collection: HRNet Metadata: + Architecture: *id001 Training Data: OCHuman Name: topdown_heatmap_hrnet_w48_ochuman_256x192 + README: configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/ochuman/hrnet_ochuman.md Results: - Dataset: OCHuman Metrics: @@ -57,11 +57,12 @@ Models: Task: Body 2D Keypoint Weights: https://download.openmmlab.com/mmpose/top_down/hrnet/hrnet_w48_coco_256x192-b9e0b3ab_20200708.pth - Config: configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/ochuman/hrnet_w48_ochuman_384x288.py - In Collection: body--2d_kpt_sview_rgb_img--topdown_heatmap--ochuman--hrnet_ochuman - [HRNet@OCHuman] + In Collection: HRNet Metadata: + Architecture: *id001 Training Data: OCHuman Name: topdown_heatmap_hrnet_w48_ochuman_384x288 + README: configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/ochuman/hrnet_ochuman.md Results: - Dataset: OCHuman Metrics: diff --git a/configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/ochuman/resnet_ochuman.yml b/configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/ochuman/resnet_ochuman.yml index 4fc6005fbb..ef32fb3522 100644 --- a/configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/ochuman/resnet_ochuman.yml +++ b/configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/ochuman/resnet_ochuman.yml @@ -1,20 +1,18 @@ Collections: -- Metadata: - Architecture: - - SimpleBaseline2D - - ResNet - Name: body--2d_kpt_sview_rgb_img--topdown_heatmap--ochuman--resnet_ochuman [SimpleBaseline2D+ResNet@OCHuman] +- Name: SimpleBaseline2D Paper: Title: Simple baselines for human pose estimation and tracking URL: http://openaccess.thecvf.com/content_ECCV_2018/html/Bin_Xiao_Simple_Baselines_for_ECCV_2018_paper.html - README: configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/ochuman/resnet_ochuman.md Models: - Config: configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/coco/res50_coco_256x192.py - In Collection: body--2d_kpt_sview_rgb_img--topdown_heatmap--ochuman--resnet_ochuman - [SimpleBaseline2D+ResNet@OCHuman] + In Collection: SimpleBaseline2D Metadata: + Architecture: &id001 + - SimpleBaseline2D + - ResNet Training Data: OCHuman Name: topdown_heatmap_res50_coco_256x192 + README: configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/ochuman/resnet_ochuman.md Results: - Dataset: OCHuman Metrics: @@ -26,11 +24,12 @@ Models: Task: Body 2D Keypoint Weights: https://download.openmmlab.com/mmpose/top_down/resnet/res50_coco_256x192-ec54d7f3_20200709.pth - Config: configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/coco/res50_coco_384x288.py - In Collection: body--2d_kpt_sview_rgb_img--topdown_heatmap--ochuman--resnet_ochuman - [SimpleBaseline2D+ResNet@OCHuman] + In Collection: SimpleBaseline2D Metadata: + Architecture: *id001 Training Data: OCHuman Name: topdown_heatmap_res50_coco_384x288 + README: configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/ochuman/resnet_ochuman.md Results: - Dataset: OCHuman Metrics: @@ -42,11 +41,12 @@ Models: Task: Body 2D Keypoint Weights: https://download.openmmlab.com/mmpose/top_down/resnet/res50_coco_384x288-e6f795e9_20200709.pth - Config: configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/coco/res101_coco_256x192.py - In Collection: body--2d_kpt_sview_rgb_img--topdown_heatmap--ochuman--resnet_ochuman - [SimpleBaseline2D+ResNet@OCHuman] + In Collection: SimpleBaseline2D Metadata: + Architecture: *id001 Training Data: OCHuman Name: topdown_heatmap_res101_coco_256x192 + README: configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/ochuman/resnet_ochuman.md Results: - Dataset: OCHuman Metrics: @@ -58,11 +58,12 @@ Models: Task: Body 2D Keypoint Weights: https://download.openmmlab.com/mmpose/top_down/resnet/res101_coco_256x192-6e6babf0_20200708.pth - Config: configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/coco/res101_coco_384x288.py - In Collection: body--2d_kpt_sview_rgb_img--topdown_heatmap--ochuman--resnet_ochuman - [SimpleBaseline2D+ResNet@OCHuman] + In Collection: SimpleBaseline2D Metadata: + Architecture: *id001 Training Data: OCHuman Name: topdown_heatmap_res101_coco_384x288 + README: configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/ochuman/resnet_ochuman.md Results: - Dataset: OCHuman Metrics: @@ -74,11 +75,12 @@ Models: Task: Body 2D Keypoint Weights: https://download.openmmlab.com/mmpose/top_down/resnet/res101_coco_384x288-8c71bdc9_20200709.pth - Config: configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/coco/res152_coco_256x192.py - In Collection: body--2d_kpt_sview_rgb_img--topdown_heatmap--ochuman--resnet_ochuman - [SimpleBaseline2D+ResNet@OCHuman] + In Collection: SimpleBaseline2D Metadata: + Architecture: *id001 Training Data: OCHuman Name: topdown_heatmap_res152_coco_256x192 + README: configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/ochuman/resnet_ochuman.md Results: - Dataset: OCHuman Metrics: @@ -90,11 +92,12 @@ Models: Task: Body 2D Keypoint Weights: https://download.openmmlab.com/mmpose/top_down/resnet/res152_coco_256x192-f6e307c2_20200709.pth - Config: configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/coco/res152_coco_384x288.py - In Collection: body--2d_kpt_sview_rgb_img--topdown_heatmap--ochuman--resnet_ochuman - [SimpleBaseline2D+ResNet@OCHuman] + In Collection: SimpleBaseline2D Metadata: + Architecture: *id001 Training Data: OCHuman Name: topdown_heatmap_res152_coco_384x288 + README: configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/ochuman/resnet_ochuman.md Results: - Dataset: OCHuman Metrics: diff --git a/configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/posetrack18/hrnet_posetrack18.yml b/configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/posetrack18/hrnet_posetrack18.yml index d8ae0f0c4a..d514b8b974 100644 --- a/configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/posetrack18/hrnet_posetrack18.yml +++ b/configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/posetrack18/hrnet_posetrack18.yml @@ -1,20 +1,17 @@ Collections: -- Metadata: - Architecture: - - HRNet - Name: body--2d_kpt_sview_rgb_img--topdown_heatmap--posetrack18--hrnet_posetrack18 - [HRNet@PoseTrack18] +- Name: HRNet Paper: Title: Deep high-resolution representation learning for human pose estimation URL: http://openaccess.thecvf.com/content_CVPR_2019/html/Sun_Deep_High-Resolution_Representation_Learning_for_Human_Pose_Estimation_CVPR_2019_paper.html - README: configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/posetrack18/hrnet_posetrack18.md Models: - Config: configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/posetrack18/hrnet_w32_posetrack18_256x192.py - In Collection: body--2d_kpt_sview_rgb_img--topdown_heatmap--posetrack18--hrnet_posetrack18 - [HRNet@PoseTrack18] + In Collection: HRNet Metadata: + Architecture: &id001 + - HRNet Training Data: PoseTrack18 Name: topdown_heatmap_hrnet_w32_posetrack18_256x192 + README: configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/posetrack18/hrnet_posetrack18.md Results: - Dataset: PoseTrack18 Metrics: @@ -29,11 +26,12 @@ Models: Task: Body 2D Keypoint Weights: https://download.openmmlab.com/mmpose/top_down/hrnet/hrnet_w32_posetrack18_256x192-1ee951c4_20201028.pth - Config: configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/posetrack18/hrnet_w32_posetrack18_256x192.py - In Collection: body--2d_kpt_sview_rgb_img--topdown_heatmap--posetrack18--hrnet_posetrack18 - [HRNet@PoseTrack18] + In Collection: HRNet Metadata: + Architecture: *id001 Training Data: PoseTrack18 Name: topdown_heatmap_hrnet_w32_posetrack18_256x192 + README: configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/posetrack18/hrnet_posetrack18.md Results: - Dataset: PoseTrack18 Metrics: diff --git a/configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/posetrack18/resnet_posetrack18.yml b/configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/posetrack18/resnet_posetrack18.yml index bc0877ee9f..c1861eea16 100644 --- a/configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/posetrack18/resnet_posetrack18.yml +++ b/configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/posetrack18/resnet_posetrack18.yml @@ -1,21 +1,18 @@ Collections: -- Metadata: - Architecture: - - SimpleBaseline2D - - ResNet - Name: body--2d_kpt_sview_rgb_img--topdown_heatmap--posetrack18--resnet_posetrack18 - [SimpleBaseline2D+ResNet@PoseTrack18] +- Name: SimpleBaseline2D Paper: Title: Simple baselines for human pose estimation and tracking URL: http://openaccess.thecvf.com/content_ECCV_2018/html/Bin_Xiao_Simple_Baselines_for_ECCV_2018_paper.html - README: configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/posetrack18/resnet_posetrack18.md Models: - Config: configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/posetrack18/res50_posetrack18_256x192.py - In Collection: body--2d_kpt_sview_rgb_img--topdown_heatmap--posetrack18--resnet_posetrack18 - [SimpleBaseline2D+ResNet@PoseTrack18] + In Collection: SimpleBaseline2D Metadata: + Architecture: &id001 + - SimpleBaseline2D + - ResNet Training Data: PoseTrack18 Name: topdown_heatmap_res50_posetrack18_256x192 + README: configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/posetrack18/resnet_posetrack18.md Results: - Dataset: PoseTrack18 Metrics: @@ -30,11 +27,12 @@ Models: Task: Body 2D Keypoint Weights: https://download.openmmlab.com/mmpose/top_down/resnet/res50_posetrack18_256x192-a62807c7_20201028.pth - Config: configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/posetrack18/res50_posetrack18_256x192.py - In Collection: body--2d_kpt_sview_rgb_img--topdown_heatmap--posetrack18--resnet_posetrack18 - [SimpleBaseline2D+ResNet@PoseTrack18] + In Collection: SimpleBaseline2D Metadata: + Architecture: *id001 Training Data: PoseTrack18 Name: topdown_heatmap_res50_posetrack18_256x192 + README: configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/posetrack18/resnet_posetrack18.md Results: - Dataset: PoseTrack18 Metrics: diff --git a/configs/body/3d_kpt_sview_rgb_img/pose_lift/h36m/simplebaseline3d_h36m.yml b/configs/body/3d_kpt_sview_rgb_img/pose_lift/h36m/simplebaseline3d_h36m.yml index 4889908eb3..78b69172bf 100644 --- a/configs/body/3d_kpt_sview_rgb_img/pose_lift/h36m/simplebaseline3d_h36m.yml +++ b/configs/body/3d_kpt_sview_rgb_img/pose_lift/h36m/simplebaseline3d_h36m.yml @@ -1,19 +1,17 @@ Collections: -- Metadata: - Architecture: - - SimpleBaseline3D - Name: body--3d_kpt_sview_rgb_img--pose_lift--h36m--simplebaseline3d_h36m [SimpleBaseline3D@Human3.6M] +- Name: SimpleBaseline3D Paper: Title: A simple yet effective baseline for 3d human pose estimation URL: http://openaccess.thecvf.com/content_iccv_2017/html/Martinez_A_Simple_yet_ICCV_2017_paper.html - README: configs/body/3d_kpt_sview_rgb_img/pose_lift/h36m/simplebaseline3d_h36m.md Models: - Config: configs/body/3d_kpt_sview_rgb_img/pose_lift/h36m/simplebaseline3d_h36m.py - In Collection: body--3d_kpt_sview_rgb_img--pose_lift--h36m--simplebaseline3d_h36m - [SimpleBaseline3D@Human3.6M] + In Collection: SimpleBaseline3D Metadata: + Architecture: + - SimpleBaseline3D Training Data: Human3.6M Name: pose_lift_simplebaseline3d_h36m + README: configs/body/3d_kpt_sview_rgb_img/pose_lift/h36m/simplebaseline3d_h36m.md Results: - Dataset: Human3.6M Metrics: diff --git a/configs/body/3d_kpt_sview_rgb_img/pose_lift/mpi_inf_3dhp/simplebaseline3d_mpi-inf-3dhp.yml b/configs/body/3d_kpt_sview_rgb_img/pose_lift/mpi_inf_3dhp/simplebaseline3d_mpi-inf-3dhp.yml index d527736af0..9331d689b4 100644 --- a/configs/body/3d_kpt_sview_rgb_img/pose_lift/mpi_inf_3dhp/simplebaseline3d_mpi-inf-3dhp.yml +++ b/configs/body/3d_kpt_sview_rgb_img/pose_lift/mpi_inf_3dhp/simplebaseline3d_mpi-inf-3dhp.yml @@ -1,20 +1,17 @@ Collections: -- Metadata: - Architecture: - - SimpleBaseline3D - Name: body--3d_kpt_sview_rgb_img--pose_lift--mpi_inf_3dhp--simplebaseline3d_mpi-inf-3dhp - [SimpleBaseline3D@MPI-INF-3DHP] +- Name: SimpleBaseline3D Paper: Title: A simple yet effective baseline for 3d human pose estimation URL: http://openaccess.thecvf.com/content_iccv_2017/html/Martinez_A_Simple_yet_ICCV_2017_paper.html - README: configs/body/3d_kpt_sview_rgb_img/pose_lift/mpi_inf_3dhp/simplebaseline3d_mpi-inf-3dhp.md Models: - Config: configs/body/3d_kpt_sview_rgb_img/pose_lift/mpi_inf_3dhp/simplebaseline3d_mpi-inf-3dhp.py - In Collection: body--3d_kpt_sview_rgb_img--pose_lift--mpi_inf_3dhp--simplebaseline3d_mpi-inf-3dhp - [SimpleBaseline3D@MPI-INF-3DHP] + In Collection: SimpleBaseline3D Metadata: + Architecture: + - SimpleBaseline3D Training Data: MPI-INF-3DHP Name: pose_lift_simplebaseline3d_mpi-inf-3dhp + README: configs/body/3d_kpt_sview_rgb_img/pose_lift/mpi_inf_3dhp/simplebaseline3d_mpi-inf-3dhp.md Results: - Dataset: MPI-INF-3DHP Metrics: diff --git a/configs/body/3d_kpt_sview_rgb_vid/video_pose_lift/h36m/videopose3d_h36m.yml b/configs/body/3d_kpt_sview_rgb_vid/video_pose_lift/h36m/videopose3d_h36m.yml index 8a14abfd1e..32a2c40ab0 100644 --- a/configs/body/3d_kpt_sview_rgb_vid/video_pose_lift/h36m/videopose3d_h36m.yml +++ b/configs/body/3d_kpt_sview_rgb_vid/video_pose_lift/h36m/videopose3d_h36m.yml @@ -1,20 +1,18 @@ Collections: -- Metadata: - Architecture: - - VideoPose3D - Name: body--3d_kpt_sview_rgb_vid--video_pose_lift--h36m--videopose3d_h36m [VideoPose3D@Human3.6M] +- Name: VideoPose3D Paper: Title: 3d human pose estimation in video with temporal convolutions and semi-supervised training URL: http://openaccess.thecvf.com/content_CVPR_2019/html/Pavllo_3D_Human_Pose_Estimation_in_Video_With_Temporal_Convolutions_and_CVPR_2019_paper.html - README: configs/body/3d_kpt_sview_rgb_vid/video_pose_lift/h36m/videopose3d_h36m.md Models: - Config: configs/body/3d_kpt_sview_rgb_vid/video_pose_lift/h36m/videopose3d_h36m_27frames_fullconv_supervised.py - In Collection: body--3d_kpt_sview_rgb_vid--video_pose_lift--h36m--videopose3d_h36m - [VideoPose3D@Human3.6M] + In Collection: VideoPose3D Metadata: + Architecture: &id001 + - VideoPose3D Training Data: Human3.6M Name: video_pose_lift_videopose3d_h36m_27frames_fullconv_supervised + README: configs/body/3d_kpt_sview_rgb_vid/video_pose_lift/h36m/videopose3d_h36m.md Results: - Dataset: Human3.6M Metrics: @@ -23,11 +21,12 @@ Models: Task: Body 3D Keypoint Weights: https://download.openmmlab.com/mmpose/body3d/videopose/videopose_h36m_27frames_fullconv_supervised-fe8fbba9_20210527.pth - Config: configs/body/3d_kpt_sview_rgb_vid/video_pose_lift/h36m/videopose3d_h36m_81frames_fullconv_supervised.py - In Collection: body--3d_kpt_sview_rgb_vid--video_pose_lift--h36m--videopose3d_h36m - [VideoPose3D@Human3.6M] + In Collection: VideoPose3D Metadata: + Architecture: *id001 Training Data: Human3.6M Name: video_pose_lift_videopose3d_h36m_81frames_fullconv_supervised + README: configs/body/3d_kpt_sview_rgb_vid/video_pose_lift/h36m/videopose3d_h36m.md Results: - Dataset: Human3.6M Metrics: @@ -36,11 +35,12 @@ Models: Task: Body 3D Keypoint Weights: https://download.openmmlab.com/mmpose/body3d/videopose/videopose_h36m_81frames_fullconv_supervised-1f2d1104_20210527.pth - Config: configs/body/3d_kpt_sview_rgb_vid/video_pose_lift/h36m/videopose3d_h36m_243frames_fullconv_supervised.py - In Collection: body--3d_kpt_sview_rgb_vid--video_pose_lift--h36m--videopose3d_h36m - [VideoPose3D@Human3.6M] + In Collection: VideoPose3D Metadata: + Architecture: *id001 Training Data: Human3.6M Name: video_pose_lift_videopose3d_h36m_243frames_fullconv_supervised + README: configs/body/3d_kpt_sview_rgb_vid/video_pose_lift/h36m/videopose3d_h36m.md Results: - Dataset: Human3.6M Metrics: @@ -49,11 +49,12 @@ Models: Task: Body 3D Keypoint Weights: https://download.openmmlab.com/mmpose/body3d/videopose/videopose_h36m_243frames_fullconv_supervised-880bea25_20210527.pth - Config: configs/body/3d_kpt_sview_rgb_vid/video_pose_lift/h36m/videopose3d_h36m_1frame_fullconv_supervised_cpn_ft.py - In Collection: body--3d_kpt_sview_rgb_vid--video_pose_lift--h36m--videopose3d_h36m - [VideoPose3D@Human3.6M] + In Collection: VideoPose3D Metadata: + Architecture: *id001 Training Data: Human3.6M Name: video_pose_lift_videopose3d_h36m_1frame_fullconv_supervised_cpn_ft + README: configs/body/3d_kpt_sview_rgb_vid/video_pose_lift/h36m/videopose3d_h36m.md Results: - Dataset: Human3.6M Metrics: @@ -62,11 +63,12 @@ Models: Task: Body 3D Keypoint Weights: https://download.openmmlab.com/mmpose/body3d/videopose/videopose_h36m_1frame_fullconv_supervised_cpn_ft-5c3afaed_20210527.pth - Config: configs/body/3d_kpt_sview_rgb_vid/video_pose_lift/h36m/videopose3d_h36m_243frames_fullconv_supervised_cpn_ft.py - In Collection: body--3d_kpt_sview_rgb_vid--video_pose_lift--h36m--videopose3d_h36m - [VideoPose3D@Human3.6M] + In Collection: VideoPose3D Metadata: + Architecture: *id001 Training Data: Human3.6M Name: video_pose_lift_videopose3d_h36m_243frames_fullconv_supervised_cpn_ft + README: configs/body/3d_kpt_sview_rgb_vid/video_pose_lift/h36m/videopose3d_h36m.md Results: - Dataset: Human3.6M Metrics: @@ -75,11 +77,12 @@ Models: Task: Body 3D Keypoint Weights: https://download.openmmlab.com/mmpose/body3d/videopose/videopose_h36m_243frames_fullconv_supervised_cpn_ft-88f5abbb_20210527.pth - Config: configs/body/3d_kpt_sview_rgb_vid/video_pose_lift/h36m/videopose3d_h36m_27frames_fullconv_semi-supervised.py - In Collection: body--3d_kpt_sview_rgb_vid--video_pose_lift--h36m--videopose3d_h36m - [VideoPose3D@Human3.6M] + In Collection: VideoPose3D Metadata: + Architecture: *id001 Training Data: Human3.6M Name: video_pose_lift_videopose3d_h36m_27frames_fullconv_semi-supervised + README: configs/body/3d_kpt_sview_rgb_vid/video_pose_lift/h36m/videopose3d_h36m.md Results: - Dataset: Human3.6M Metrics: @@ -89,11 +92,12 @@ Models: Task: Body 3D Keypoint Weights: https://download.openmmlab.com/mmpose/body3d/videopose/videopose_h36m_27frames_fullconv_semi-supervised-54aef83b_20210527.pth - Config: configs/body/3d_kpt_sview_rgb_vid/video_pose_lift/h36m/videopose3d_h36m_27frames_fullconv_semi-supervised_cpn_ft.py - In Collection: body--3d_kpt_sview_rgb_vid--video_pose_lift--h36m--videopose3d_h36m - [VideoPose3D@Human3.6M] + In Collection: VideoPose3D Metadata: + Architecture: *id001 Training Data: Human3.6M Name: video_pose_lift_videopose3d_h36m_27frames_fullconv_semi-supervised_cpn_ft + README: configs/body/3d_kpt_sview_rgb_vid/video_pose_lift/h36m/videopose3d_h36m.md Results: - Dataset: Human3.6M Metrics: diff --git a/configs/body/3d_kpt_sview_rgb_vid/video_pose_lift/mpi_inf_3dhp/videopose3d_mpi-inf-3dhp.yml b/configs/body/3d_kpt_sview_rgb_vid/video_pose_lift/mpi_inf_3dhp/videopose3d_mpi-inf-3dhp.yml index dd7fa0993b..cf5d302adb 100644 --- a/configs/body/3d_kpt_sview_rgb_vid/video_pose_lift/mpi_inf_3dhp/videopose3d_mpi-inf-3dhp.yml +++ b/configs/body/3d_kpt_sview_rgb_vid/video_pose_lift/mpi_inf_3dhp/videopose3d_mpi-inf-3dhp.yml @@ -1,21 +1,18 @@ Collections: -- Metadata: - Architecture: - - VideoPose3D - Name: body--3d_kpt_sview_rgb_vid--video_pose_lift--mpi_inf_3dhp--videopose3d_mpi-inf-3dhp - [VideoPose3D@MPI-INF-3DHP] +- Name: VideoPose3D Paper: Title: 3d human pose estimation in video with temporal convolutions and semi-supervised training URL: http://openaccess.thecvf.com/content_CVPR_2019/html/Pavllo_3D_Human_Pose_Estimation_in_Video_With_Temporal_Convolutions_and_CVPR_2019_paper.html - README: configs/body/3d_kpt_sview_rgb_vid/video_pose_lift/mpi_inf_3dhp/videopose3d_mpi-inf-3dhp.md Models: - Config: configs/body/3d_kpt_sview_rgb_vid/video_pose_lift/mpi_inf_3dhp/videopose3d_mpi-inf-3dhp_1frame_fullconv_supervised_gt.py - In Collection: body--3d_kpt_sview_rgb_vid--video_pose_lift--mpi_inf_3dhp--videopose3d_mpi-inf-3dhp - [VideoPose3D@MPI-INF-3DHP] + In Collection: VideoPose3D Metadata: + Architecture: + - VideoPose3D Training Data: MPI-INF-3DHP Name: video_pose_lift_videopose3d_mpi-inf-3dhp_1frame_fullconv_supervised_gt + README: configs/body/3d_kpt_sview_rgb_vid/video_pose_lift/mpi_inf_3dhp/videopose3d_mpi-inf-3dhp.md Results: - Dataset: MPI-INF-3DHP Metrics: diff --git a/configs/body/3d_mesh_sview_rgb_img/hmr/mixed/resnet_mixed.yml b/configs/body/3d_mesh_sview_rgb_img/hmr/mixed/resnet_mixed.yml index b1c8d842c9..cbee83cfb6 100644 --- a/configs/body/3d_mesh_sview_rgb_img/hmr/mixed/resnet_mixed.yml +++ b/configs/body/3d_mesh_sview_rgb_img/hmr/mixed/resnet_mixed.yml @@ -1,19 +1,18 @@ Collections: -- Metadata: - Architecture: - - HMR - - ResNet - Name: body--3d_mesh_sview_rgb_img--hmr--mixed--resnet_mixed [HMR+ResNet@Human3.6M] +- Name: HMR Paper: Title: End-to-end Recovery of Human Shape and Pose URL: http://openaccess.thecvf.com/content_cvpr_2018/html/Kanazawa_End-to-End_Recovery_of_CVPR_2018_paper.html - README: configs/body/3d_mesh_sview_rgb_img/hmr/mixed/resnet_mixed.md Models: - Config: configs/body/3d_mesh_sview_rgb_img/hmr/mixed/res50_mixed_224x224.py - In Collection: body--3d_mesh_sview_rgb_img--hmr--mixed--resnet_mixed [HMR+ResNet@Human3.6M] + In Collection: HMR Metadata: + Architecture: + - HMR + - ResNet Training Data: Human3.6M Name: hmr_res50_mixed_224x224 + README: configs/body/3d_mesh_sview_rgb_img/hmr/mixed/resnet_mixed.md Results: - Dataset: Human3.6M Metrics: diff --git a/configs/face/2d_kpt_sview_rgb_img/deeppose/wflw/resnet_wflw.yml b/configs/face/2d_kpt_sview_rgb_img/deeppose/wflw/resnet_wflw.yml index c453335770..d9e6f61388 100644 --- a/configs/face/2d_kpt_sview_rgb_img/deeppose/wflw/resnet_wflw.yml +++ b/configs/face/2d_kpt_sview_rgb_img/deeppose/wflw/resnet_wflw.yml @@ -1,19 +1,18 @@ Collections: -- Metadata: - Architecture: - - DeepPose - - ResNet - Name: face--2d_kpt_sview_rgb_img--deeppose--wflw--resnet_wflw [DeepPose+ResNet@WFLW] +- Name: ResNet Paper: Title: Deep residual learning for image recognition URL: http://openaccess.thecvf.com/content_cvpr_2016/html/He_Deep_Residual_Learning_CVPR_2016_paper.html - README: configs/face/2d_kpt_sview_rgb_img/deeppose/wflw/resnet_wflw.md Models: - Config: configs/face/2d_kpt_sview_rgb_img/deeppose/wflw/res50_wflw_256x256.py - In Collection: face--2d_kpt_sview_rgb_img--deeppose--wflw--resnet_wflw [DeepPose+ResNet@WFLW] + In Collection: ResNet Metadata: + Architecture: + - DeepPose + - ResNet Training Data: WFLW Name: deeppose_res50_wflw_256x256 + README: configs/face/2d_kpt_sview_rgb_img/deeppose/wflw/resnet_wflw.md Results: - Dataset: WFLW Metrics: diff --git a/configs/face/2d_kpt_sview_rgb_img/deeppose/wflw/resnet_wingloss_wflw.yml b/configs/face/2d_kpt_sview_rgb_img/deeppose/wflw/resnet_wingloss_wflw.yml index ed7c6681d3..b068c7c8c5 100644 --- a/configs/face/2d_kpt_sview_rgb_img/deeppose/wflw/resnet_wingloss_wflw.yml +++ b/configs/face/2d_kpt_sview_rgb_img/deeppose/wflw/resnet_wingloss_wflw.yml @@ -1,22 +1,20 @@ Collections: -- Metadata: - Architecture: - - DeepPose - - ResNet - - Wingloss - Name: face--2d_kpt_sview_rgb_img--deeppose--wflw--resnet_wingloss_wflw [DeepPose+ResNet+Wingloss@WFLW] +- Name: Wingloss Paper: Title: Wing Loss for Robust Facial Landmark Localisation with Convolutional Neural Networks URL: http://openaccess.thecvf.com/content_cvpr_2018/html/Feng_Wing_Loss_for_CVPR_2018_paper.html - README: configs/face/2d_kpt_sview_rgb_img/deeppose/wflw/resnet_wingloss_wflw.md Models: - Config: configs/face/2d_kpt_sview_rgb_img/deeppose/wflw/res50_wflw_256x256_wingloss.py - In Collection: face--2d_kpt_sview_rgb_img--deeppose--wflw--resnet_wingloss_wflw - [DeepPose+ResNet+Wingloss@WFLW] + In Collection: Wingloss Metadata: + Architecture: + - DeepPose + - ResNet + - Wingloss Training Data: WFLW Name: deeppose_res50_wflw_256x256_wingloss + README: configs/face/2d_kpt_sview_rgb_img/deeppose/wflw/resnet_wingloss_wflw.md Results: - Dataset: WFLW Metrics: diff --git a/configs/face/2d_kpt_sview_rgb_img/topdown_heatmap/300w/hrnetv2_300w.yml b/configs/face/2d_kpt_sview_rgb_img/topdown_heatmap/300w/hrnetv2_300w.yml index 1dc1e45c48..3096afddce 100644 --- a/configs/face/2d_kpt_sview_rgb_img/topdown_heatmap/300w/hrnetv2_300w.yml +++ b/configs/face/2d_kpt_sview_rgb_img/topdown_heatmap/300w/hrnetv2_300w.yml @@ -1,18 +1,17 @@ Collections: -- Metadata: - Architecture: - - HRNetv2 - Name: face--2d_kpt_sview_rgb_img--topdown_heatmap--300w--hrnetv2_300w [HRNetv2@300W] +- Name: HRNetv2 Paper: Title: Deep High-Resolution Representation Learning for Visual Recognition URL: https://ieeexplore.ieee.org/abstract/document/9052469/ - README: configs/face/2d_kpt_sview_rgb_img/topdown_heatmap/300w/hrnetv2_300w.md Models: - Config: configs/face/2d_kpt_sview_rgb_img/topdown_heatmap/300w/hrnetv2_w18_300w_256x256.py - In Collection: face--2d_kpt_sview_rgb_img--topdown_heatmap--300w--hrnetv2_300w [HRNetv2@300W] + In Collection: HRNetv2 Metadata: + Architecture: + - HRNetv2 Training Data: 300W Name: topdown_heatmap_hrnetv2_w18_300w_256x256 + README: configs/face/2d_kpt_sview_rgb_img/topdown_heatmap/300w/hrnetv2_300w.md Results: - Dataset: 300W Metrics: diff --git a/configs/face/2d_kpt_sview_rgb_img/topdown_heatmap/aflw/hrnetv2_aflw.yml b/configs/face/2d_kpt_sview_rgb_img/topdown_heatmap/aflw/hrnetv2_aflw.yml index 8513e2bb20..ea48dbddf4 100644 --- a/configs/face/2d_kpt_sview_rgb_img/topdown_heatmap/aflw/hrnetv2_aflw.yml +++ b/configs/face/2d_kpt_sview_rgb_img/topdown_heatmap/aflw/hrnetv2_aflw.yml @@ -1,18 +1,17 @@ Collections: -- Metadata: - Architecture: - - HRNetv2 - Name: face--2d_kpt_sview_rgb_img--topdown_heatmap--aflw--hrnetv2_aflw [HRNetv2@AFLW] +- Name: HRNetv2 Paper: Title: Deep High-Resolution Representation Learning for Visual Recognition URL: https://ieeexplore.ieee.org/abstract/document/9052469/ - README: configs/face/2d_kpt_sview_rgb_img/topdown_heatmap/aflw/hrnetv2_aflw.md Models: - Config: configs/face/2d_kpt_sview_rgb_img/topdown_heatmap/aflw/hrnetv2_w18_aflw_256x256.py - In Collection: face--2d_kpt_sview_rgb_img--topdown_heatmap--aflw--hrnetv2_aflw [HRNetv2@AFLW] + In Collection: HRNetv2 Metadata: + Architecture: + - HRNetv2 Training Data: AFLW Name: topdown_heatmap_hrnetv2_w18_aflw_256x256 + README: configs/face/2d_kpt_sview_rgb_img/topdown_heatmap/aflw/hrnetv2_aflw.md Results: - Dataset: AFLW Metrics: diff --git a/configs/face/2d_kpt_sview_rgb_img/topdown_heatmap/aflw/hrnetv2_dark_aflw.yml b/configs/face/2d_kpt_sview_rgb_img/topdown_heatmap/aflw/hrnetv2_dark_aflw.yml index ca38e57a6d..796023078c 100644 --- a/configs/face/2d_kpt_sview_rgb_img/topdown_heatmap/aflw/hrnetv2_dark_aflw.yml +++ b/configs/face/2d_kpt_sview_rgb_img/topdown_heatmap/aflw/hrnetv2_dark_aflw.yml @@ -1,20 +1,18 @@ Collections: -- Metadata: - Architecture: - - HRNetv2 - - DarkPose - Name: face--2d_kpt_sview_rgb_img--topdown_heatmap--aflw--hrnetv2_dark_aflw [HRNetv2+DarkPose@AFLW] +- Name: DarkPose Paper: Title: Distribution-aware coordinate representation for human pose estimation URL: http://openaccess.thecvf.com/content_CVPR_2020/html/Zhang_Distribution-Aware_Coordinate_Representation_for_Human_Pose_Estimation_CVPR_2020_paper.html - README: configs/face/2d_kpt_sview_rgb_img/topdown_heatmap/aflw/hrnetv2_dark_aflw.md Models: - Config: configs/face/2d_kpt_sview_rgb_img/topdown_heatmap/aflw/hrnetv2_w18_aflw_256x256_dark.py - In Collection: face--2d_kpt_sview_rgb_img--topdown_heatmap--aflw--hrnetv2_dark_aflw - [HRNetv2+DarkPose@AFLW] + In Collection: DarkPose Metadata: + Architecture: + - HRNetv2 + - DarkPose Training Data: AFLW Name: topdown_heatmap_hrnetv2_w18_aflw_256x256_dark + README: configs/face/2d_kpt_sview_rgb_img/topdown_heatmap/aflw/hrnetv2_dark_aflw.md Results: - Dataset: AFLW Metrics: diff --git a/configs/face/2d_kpt_sview_rgb_img/topdown_heatmap/coco_wholebody_face/hourglass_coco_wholebody_face.yml b/configs/face/2d_kpt_sview_rgb_img/topdown_heatmap/coco_wholebody_face/hourglass_coco_wholebody_face.yml index 30e14995fd..bded430bce 100644 --- a/configs/face/2d_kpt_sview_rgb_img/topdown_heatmap/coco_wholebody_face/hourglass_coco_wholebody_face.yml +++ b/configs/face/2d_kpt_sview_rgb_img/topdown_heatmap/coco_wholebody_face/hourglass_coco_wholebody_face.yml @@ -1,20 +1,17 @@ Collections: -- Metadata: - Architecture: - - Hourglass - Name: face--2d_kpt_sview_rgb_img--topdown_heatmap--coco_wholebody_face--hourglass_coco_wholebody_face - [Hourglass@COCO-WholeBody-Face] +- Name: Hourglass Paper: Title: Stacked hourglass networks for human pose estimation URL: https://link.springer.com/chapter/10.1007/978-3-319-46484-8_29 - README: configs/face/2d_kpt_sview_rgb_img/topdown_heatmap/coco_wholebody_face/hourglass_coco_wholebody_face.md Models: - Config: configs/face/2d_kpt_sview_rgb_img/topdown_heatmap/coco_wholebody_face/hourglass52_coco_wholebody_face_256x256.py - In Collection: face--2d_kpt_sview_rgb_img--topdown_heatmap--coco_wholebody_face--hourglass_coco_wholebody_face - [Hourglass@COCO-WholeBody-Face] + In Collection: Hourglass Metadata: + Architecture: + - Hourglass Training Data: COCO-WholeBody-Face Name: topdown_heatmap_hourglass52_coco_wholebody_face_256x256 + README: configs/face/2d_kpt_sview_rgb_img/topdown_heatmap/coco_wholebody_face/hourglass_coco_wholebody_face.md Results: - Dataset: COCO-WholeBody-Face Metrics: diff --git a/configs/face/2d_kpt_sview_rgb_img/topdown_heatmap/coco_wholebody_face/hrnetv2_coco_wholebody_face.yml b/configs/face/2d_kpt_sview_rgb_img/topdown_heatmap/coco_wholebody_face/hrnetv2_coco_wholebody_face.yml index 1eadabe923..2e2aba4662 100644 --- a/configs/face/2d_kpt_sview_rgb_img/topdown_heatmap/coco_wholebody_face/hrnetv2_coco_wholebody_face.yml +++ b/configs/face/2d_kpt_sview_rgb_img/topdown_heatmap/coco_wholebody_face/hrnetv2_coco_wholebody_face.yml @@ -1,20 +1,17 @@ Collections: -- Metadata: - Architecture: - - HRNetv2 - Name: face--2d_kpt_sview_rgb_img--topdown_heatmap--coco_wholebody_face--hrnetv2_coco_wholebody_face - [HRNetv2@COCO-WholeBody-Face] +- Name: HRNetv2 Paper: Title: Deep High-Resolution Representation Learning for Visual Recognition URL: https://ieeexplore.ieee.org/abstract/document/9052469/ - README: configs/face/2d_kpt_sview_rgb_img/topdown_heatmap/coco_wholebody_face/hrnetv2_coco_wholebody_face.md Models: - Config: configs/face/2d_kpt_sview_rgb_img/topdown_heatmap/coco_wholebody_face/hrnetv2_w18_coco_wholebody_face_256x256.py - In Collection: face--2d_kpt_sview_rgb_img--topdown_heatmap--coco_wholebody_face--hrnetv2_coco_wholebody_face - [HRNetv2@COCO-WholeBody-Face] + In Collection: HRNetv2 Metadata: + Architecture: + - HRNetv2 Training Data: COCO-WholeBody-Face Name: topdown_heatmap_hrnetv2_w18_coco_wholebody_face_256x256 + README: configs/face/2d_kpt_sview_rgb_img/topdown_heatmap/coco_wholebody_face/hrnetv2_coco_wholebody_face.md Results: - Dataset: COCO-WholeBody-Face Metrics: diff --git a/configs/face/2d_kpt_sview_rgb_img/topdown_heatmap/coco_wholebody_face/hrnetv2_dark_coco_wholebody_face.yml b/configs/face/2d_kpt_sview_rgb_img/topdown_heatmap/coco_wholebody_face/hrnetv2_dark_coco_wholebody_face.yml index 68eeb00d04..c2e796e243 100644 --- a/configs/face/2d_kpt_sview_rgb_img/topdown_heatmap/coco_wholebody_face/hrnetv2_dark_coco_wholebody_face.yml +++ b/configs/face/2d_kpt_sview_rgb_img/topdown_heatmap/coco_wholebody_face/hrnetv2_dark_coco_wholebody_face.yml @@ -1,21 +1,18 @@ Collections: -- Metadata: - Architecture: - - HRNetv2 - - DarkPose - Name: face--2d_kpt_sview_rgb_img--topdown_heatmap--coco_wholebody_face--hrnetv2_dark_coco_wholebody_face - [HRNetv2+DarkPose@COCO-WholeBody-Face] +- Name: DarkPose Paper: Title: Distribution-aware coordinate representation for human pose estimation URL: http://openaccess.thecvf.com/content_CVPR_2020/html/Zhang_Distribution-Aware_Coordinate_Representation_for_Human_Pose_Estimation_CVPR_2020_paper.html - README: configs/face/2d_kpt_sview_rgb_img/topdown_heatmap/coco_wholebody_face/hrnetv2_dark_coco_wholebody_face.md Models: - Config: configs/face/2d_kpt_sview_rgb_img/topdown_heatmap/coco_wholebody_face/hrnetv2_w18_coco_wholebody_face_256x256_dark.py - In Collection: face--2d_kpt_sview_rgb_img--topdown_heatmap--coco_wholebody_face--hrnetv2_dark_coco_wholebody_face - [HRNetv2+DarkPose@COCO-WholeBody-Face] + In Collection: DarkPose Metadata: + Architecture: + - HRNetv2 + - DarkPose Training Data: COCO-WholeBody-Face Name: topdown_heatmap_hrnetv2_w18_coco_wholebody_face_256x256_dark + README: configs/face/2d_kpt_sview_rgb_img/topdown_heatmap/coco_wholebody_face/hrnetv2_dark_coco_wholebody_face.md Results: - Dataset: COCO-WholeBody-Face Metrics: diff --git a/configs/face/2d_kpt_sview_rgb_img/topdown_heatmap/coco_wholebody_face/mobilenetv2_coco_wholebody_face.yml b/configs/face/2d_kpt_sview_rgb_img/topdown_heatmap/coco_wholebody_face/mobilenetv2_coco_wholebody_face.yml index 45243ce460..803452f4bd 100644 --- a/configs/face/2d_kpt_sview_rgb_img/topdown_heatmap/coco_wholebody_face/mobilenetv2_coco_wholebody_face.yml +++ b/configs/face/2d_kpt_sview_rgb_img/topdown_heatmap/coco_wholebody_face/mobilenetv2_coco_wholebody_face.yml @@ -1,20 +1,17 @@ Collections: -- Metadata: - Architecture: - - MobilenetV2 - Name: face--2d_kpt_sview_rgb_img--topdown_heatmap--coco_wholebody_face--mobilenetv2_coco_wholebody_face - [MobilenetV2@COCO-WholeBody-Face] +- Name: MobilenetV2 Paper: Title: 'Mobilenetv2: Inverted residuals and linear bottlenecks' URL: http://openaccess.thecvf.com/content_cvpr_2018/html/Sandler_MobileNetV2_Inverted_Residuals_CVPR_2018_paper.html - README: configs/face/2d_kpt_sview_rgb_img/topdown_heatmap/coco_wholebody_face/mobilenetv2_coco_wholebody_face.md Models: - Config: configs/face/2d_kpt_sview_rgb_img/topdown_heatmap/coco_wholebody_face/mobilenetv2_coco_wholebody_face_256x256.py - In Collection: face--2d_kpt_sview_rgb_img--topdown_heatmap--coco_wholebody_face--mobilenetv2_coco_wholebody_face - [MobilenetV2@COCO-WholeBody-Face] + In Collection: MobilenetV2 Metadata: + Architecture: + - MobilenetV2 Training Data: COCO-WholeBody-Face Name: topdown_heatmap_mobilenetv2_coco_wholebody_face_256x256 + README: configs/face/2d_kpt_sview_rgb_img/topdown_heatmap/coco_wholebody_face/mobilenetv2_coco_wholebody_face.md Results: - Dataset: COCO-WholeBody-Face Metrics: diff --git a/configs/face/2d_kpt_sview_rgb_img/topdown_heatmap/coco_wholebody_face/resnet_coco_wholebody_face.yml b/configs/face/2d_kpt_sview_rgb_img/topdown_heatmap/coco_wholebody_face/resnet_coco_wholebody_face.yml index 2791da0b3c..1491b8edb4 100644 --- a/configs/face/2d_kpt_sview_rgb_img/topdown_heatmap/coco_wholebody_face/resnet_coco_wholebody_face.yml +++ b/configs/face/2d_kpt_sview_rgb_img/topdown_heatmap/coco_wholebody_face/resnet_coco_wholebody_face.yml @@ -1,21 +1,18 @@ Collections: -- Metadata: - Architecture: - - SimpleBaseline2D - - ResNet - Name: face--2d_kpt_sview_rgb_img--topdown_heatmap--coco_wholebody_face--resnet_coco_wholebody_face - [SimpleBaseline2D+ResNet@COCO-WholeBody-Face] +- Name: SimpleBaseline2D Paper: Title: Simple baselines for human pose estimation and tracking URL: http://openaccess.thecvf.com/content_ECCV_2018/html/Bin_Xiao_Simple_Baselines_for_ECCV_2018_paper.html - README: configs/face/2d_kpt_sview_rgb_img/topdown_heatmap/coco_wholebody_face/resnet_coco_wholebody_face.md Models: - Config: configs/face/2d_kpt_sview_rgb_img/topdown_heatmap/coco_wholebody_face/res50_coco_wholebody_face_256x256.py - In Collection: face--2d_kpt_sview_rgb_img--topdown_heatmap--coco_wholebody_face--resnet_coco_wholebody_face - [SimpleBaseline2D+ResNet@COCO-WholeBody-Face] + In Collection: SimpleBaseline2D Metadata: + Architecture: + - SimpleBaseline2D + - ResNet Training Data: COCO-WholeBody-Face Name: topdown_heatmap_res50_coco_wholebody_face_256x256 + README: configs/face/2d_kpt_sview_rgb_img/topdown_heatmap/coco_wholebody_face/resnet_coco_wholebody_face.md Results: - Dataset: COCO-WholeBody-Face Metrics: diff --git a/configs/face/2d_kpt_sview_rgb_img/topdown_heatmap/coco_wholebody_face/scnet_coco_wholebody_face.yml b/configs/face/2d_kpt_sview_rgb_img/topdown_heatmap/coco_wholebody_face/scnet_coco_wholebody_face.yml index f215407045..4a303318a5 100644 --- a/configs/face/2d_kpt_sview_rgb_img/topdown_heatmap/coco_wholebody_face/scnet_coco_wholebody_face.yml +++ b/configs/face/2d_kpt_sview_rgb_img/topdown_heatmap/coco_wholebody_face/scnet_coco_wholebody_face.yml @@ -1,20 +1,17 @@ Collections: -- Metadata: - Architecture: - - SCNet - Name: face--2d_kpt_sview_rgb_img--topdown_heatmap--coco_wholebody_face--scnet_coco_wholebody_face - [SCNet@COCO-WholeBody-Face] +- Name: SCNet Paper: Title: Improving Convolutional Networks with Self-Calibrated Convolutions URL: http://openaccess.thecvf.com/content_CVPR_2020/html/Liu_Improving_Convolutional_Networks_With_Self-Calibrated_Convolutions_CVPR_2020_paper.html - README: configs/face/2d_kpt_sview_rgb_img/topdown_heatmap/coco_wholebody_face/scnet_coco_wholebody_face.md Models: - Config: configs/face/2d_kpt_sview_rgb_img/topdown_heatmap/coco_wholebody_face/scnet50_coco_wholebody_face_256x256.py - In Collection: face--2d_kpt_sview_rgb_img--topdown_heatmap--coco_wholebody_face--scnet_coco_wholebody_face - [SCNet@COCO-WholeBody-Face] + In Collection: SCNet Metadata: + Architecture: + - SCNet Training Data: COCO-WholeBody-Face Name: topdown_heatmap_scnet50_coco_wholebody_face_256x256 + README: configs/face/2d_kpt_sview_rgb_img/topdown_heatmap/coco_wholebody_face/scnet_coco_wholebody_face.md Results: - Dataset: COCO-WholeBody-Face Metrics: diff --git a/configs/face/2d_kpt_sview_rgb_img/topdown_heatmap/cofw/hrnetv2_cofw.yml b/configs/face/2d_kpt_sview_rgb_img/topdown_heatmap/cofw/hrnetv2_cofw.yml index 29972aa883..3139fffc8e 100644 --- a/configs/face/2d_kpt_sview_rgb_img/topdown_heatmap/cofw/hrnetv2_cofw.yml +++ b/configs/face/2d_kpt_sview_rgb_img/topdown_heatmap/cofw/hrnetv2_cofw.yml @@ -1,18 +1,17 @@ Collections: -- Metadata: - Architecture: - - HRNetv2 - Name: face--2d_kpt_sview_rgb_img--topdown_heatmap--cofw--hrnetv2_cofw [HRNetv2@COFW] +- Name: HRNetv2 Paper: Title: Deep High-Resolution Representation Learning for Visual Recognition URL: https://ieeexplore.ieee.org/abstract/document/9052469/ - README: configs/face/2d_kpt_sview_rgb_img/topdown_heatmap/cofw/hrnetv2_cofw.md Models: - Config: configs/face/2d_kpt_sview_rgb_img/topdown_heatmap/cofw/hrnetv2_w18_cofw_256x256.py - In Collection: face--2d_kpt_sview_rgb_img--topdown_heatmap--cofw--hrnetv2_cofw [HRNetv2@COFW] + In Collection: HRNetv2 Metadata: + Architecture: + - HRNetv2 Training Data: COFW Name: topdown_heatmap_hrnetv2_w18_cofw_256x256 + README: configs/face/2d_kpt_sview_rgb_img/topdown_heatmap/cofw/hrnetv2_cofw.md Results: - Dataset: COFW Metrics: diff --git a/configs/face/2d_kpt_sview_rgb_img/topdown_heatmap/wflw/hrnetv2_dark_wflw.yml b/configs/face/2d_kpt_sview_rgb_img/topdown_heatmap/wflw/hrnetv2_dark_wflw.yml index 2259e34808..92de6740aa 100644 --- a/configs/face/2d_kpt_sview_rgb_img/topdown_heatmap/wflw/hrnetv2_dark_wflw.yml +++ b/configs/face/2d_kpt_sview_rgb_img/topdown_heatmap/wflw/hrnetv2_dark_wflw.yml @@ -1,20 +1,18 @@ Collections: -- Metadata: - Architecture: - - HRNetv2 - - DarkPose - Name: face--2d_kpt_sview_rgb_img--topdown_heatmap--wflw--hrnetv2_dark_wflw [HRNetv2+DarkPose@WFLW] +- Name: DarkPose Paper: Title: Distribution-aware coordinate representation for human pose estimation URL: http://openaccess.thecvf.com/content_CVPR_2020/html/Zhang_Distribution-Aware_Coordinate_Representation_for_Human_Pose_Estimation_CVPR_2020_paper.html - README: configs/face/2d_kpt_sview_rgb_img/topdown_heatmap/wflw/hrnetv2_dark_wflw.md Models: - Config: configs/face/2d_kpt_sview_rgb_img/topdown_heatmap/wflw/hrnetv2_w18_wflw_256x256_dark.py - In Collection: face--2d_kpt_sview_rgb_img--topdown_heatmap--wflw--hrnetv2_dark_wflw - [HRNetv2+DarkPose@WFLW] + In Collection: DarkPose Metadata: + Architecture: + - HRNetv2 + - DarkPose Training Data: WFLW Name: topdown_heatmap_hrnetv2_w18_wflw_256x256_dark + README: configs/face/2d_kpt_sview_rgb_img/topdown_heatmap/wflw/hrnetv2_dark_wflw.md Results: - Dataset: WFLW Metrics: diff --git a/configs/face/2d_kpt_sview_rgb_img/topdown_heatmap/wflw/hrnetv2_wflw.yml b/configs/face/2d_kpt_sview_rgb_img/topdown_heatmap/wflw/hrnetv2_wflw.yml index 2bd21b649d..2d06125a3f 100644 --- a/configs/face/2d_kpt_sview_rgb_img/topdown_heatmap/wflw/hrnetv2_wflw.yml +++ b/configs/face/2d_kpt_sview_rgb_img/topdown_heatmap/wflw/hrnetv2_wflw.yml @@ -1,18 +1,17 @@ Collections: -- Metadata: - Architecture: - - HRNetv2 - Name: face--2d_kpt_sview_rgb_img--topdown_heatmap--wflw--hrnetv2_wflw [HRNetv2@WFLW] +- Name: HRNetv2 Paper: Title: Deep High-Resolution Representation Learning for Visual Recognition URL: https://ieeexplore.ieee.org/abstract/document/9052469/ - README: configs/face/2d_kpt_sview_rgb_img/topdown_heatmap/wflw/hrnetv2_wflw.md Models: - Config: configs/face/2d_kpt_sview_rgb_img/topdown_heatmap/wflw/hrnetv2_w18_wflw_256x256.py - In Collection: face--2d_kpt_sview_rgb_img--topdown_heatmap--wflw--hrnetv2_wflw [HRNetv2@WFLW] + In Collection: HRNetv2 Metadata: + Architecture: + - HRNetv2 Training Data: WFLW Name: topdown_heatmap_hrnetv2_w18_wflw_256x256 + README: configs/face/2d_kpt_sview_rgb_img/topdown_heatmap/wflw/hrnetv2_wflw.md Results: - Dataset: WFLW Metrics: diff --git a/configs/fashion/2d_kpt_sview_rgb_img/deeppose/deepfashion/resnet_deepfashion.yml b/configs/fashion/2d_kpt_sview_rgb_img/deeppose/deepfashion/resnet_deepfashion.yml index 7b76a6153f..a1f82efe4e 100644 --- a/configs/fashion/2d_kpt_sview_rgb_img/deeppose/deepfashion/resnet_deepfashion.yml +++ b/configs/fashion/2d_kpt_sview_rgb_img/deeppose/deepfashion/resnet_deepfashion.yml @@ -1,20 +1,18 @@ Collections: -- Metadata: - Architecture: - - DeepPose - - ResNet - Name: fashion--2d_kpt_sview_rgb_img--deeppose--deepfashion--resnet_deepfashion [DeepPose+ResNet@DeepFashion] +- Name: ResNet Paper: Title: Deep residual learning for image recognition URL: http://openaccess.thecvf.com/content_cvpr_2016/html/He_Deep_Residual_Learning_CVPR_2016_paper.html - README: configs/fashion/2d_kpt_sview_rgb_img/deeppose/deepfashion/resnet_deepfashion.md Models: - Config: configs/fashion/2d_kpt_sview_rgb_img/deeppose/deepfashion/res50_deepfashion_upper_256x192.py - In Collection: fashion--2d_kpt_sview_rgb_img--deeppose--deepfashion--resnet_deepfashion - [DeepPose+ResNet@DeepFashion] + In Collection: ResNet Metadata: + Architecture: &id001 + - DeepPose + - ResNet Training Data: DeepFashion Name: deeppose_res50_deepfashion_upper_256x192 + README: configs/fashion/2d_kpt_sview_rgb_img/deeppose/deepfashion/resnet_deepfashion.md Results: - Dataset: DeepFashion Metrics: @@ -24,11 +22,12 @@ Models: Task: Fashion 2D Keypoint Weights: https://download.openmmlab.com/mmpose/fashion/deeppose/deeppose_res50_deepfashion_upper_256x192-497799fb_20210309.pth - Config: configs/fashion/2d_kpt_sview_rgb_img/deeppose/deepfashion/res50_deepfashion_lower_256x192.py - In Collection: fashion--2d_kpt_sview_rgb_img--deeppose--deepfashion--resnet_deepfashion - [DeepPose+ResNet@DeepFashion] + In Collection: ResNet Metadata: + Architecture: *id001 Training Data: DeepFashion Name: deeppose_res50_deepfashion_lower_256x192 + README: configs/fashion/2d_kpt_sview_rgb_img/deeppose/deepfashion/resnet_deepfashion.md Results: - Dataset: DeepFashion Metrics: @@ -38,11 +37,12 @@ Models: Task: Fashion 2D Keypoint Weights: https://download.openmmlab.com/mmpose/fashion/deeppose/deeppose_res50_deepfashion_lower_256x192-94e0e653_20210309.pth - Config: configs/fashion/2d_kpt_sview_rgb_img/deeppose/deepfashion/res50_deepfashion_full_256x192.py - In Collection: fashion--2d_kpt_sview_rgb_img--deeppose--deepfashion--resnet_deepfashion - [DeepPose+ResNet@DeepFashion] + In Collection: ResNet Metadata: + Architecture: *id001 Training Data: DeepFashion Name: deeppose_res50_deepfashion_full_256x192 + README: configs/fashion/2d_kpt_sview_rgb_img/deeppose/deepfashion/resnet_deepfashion.md Results: - Dataset: DeepFashion Metrics: diff --git a/configs/fashion/2d_kpt_sview_rgb_img/topdown_heatmap/deepfashion/resnet_deepfashion.yml b/configs/fashion/2d_kpt_sview_rgb_img/topdown_heatmap/deepfashion/resnet_deepfashion.yml index ea02f0f980..97110029be 100644 --- a/configs/fashion/2d_kpt_sview_rgb_img/topdown_heatmap/deepfashion/resnet_deepfashion.yml +++ b/configs/fashion/2d_kpt_sview_rgb_img/topdown_heatmap/deepfashion/resnet_deepfashion.yml @@ -1,21 +1,18 @@ Collections: -- Metadata: - Architecture: - - SimpleBaseline2D - - ResNet - Name: fashion--2d_kpt_sview_rgb_img--topdown_heatmap--deepfashion--resnet_deepfashion - [SimpleBaseline2D+ResNet@DeepFashion] +- Name: SimpleBaseline2D Paper: Title: Simple baselines for human pose estimation and tracking URL: http://openaccess.thecvf.com/content_ECCV_2018/html/Bin_Xiao_Simple_Baselines_for_ECCV_2018_paper.html - README: configs/fashion/2d_kpt_sview_rgb_img/topdown_heatmap/deepfashion/resnet_deepfashion.md Models: - Config: configs/fashion/2d_kpt_sview_rgb_img/topdown_heatmap/deepfashion/res50_deepfashion_upper_256x192.py - In Collection: fashion--2d_kpt_sview_rgb_img--topdown_heatmap--deepfashion--resnet_deepfashion - [SimpleBaseline2D+ResNet@DeepFashion] + In Collection: SimpleBaseline2D Metadata: + Architecture: &id001 + - SimpleBaseline2D + - ResNet Training Data: DeepFashion Name: topdown_heatmap_res50_deepfashion_upper_256x192 + README: configs/fashion/2d_kpt_sview_rgb_img/topdown_heatmap/deepfashion/resnet_deepfashion.md Results: - Dataset: DeepFashion Metrics: @@ -25,11 +22,12 @@ Models: Task: Fashion 2D Keypoint Weights: https://download.openmmlab.com/mmpose/fashion/resnet/res50_deepfashion_upper_256x192-41794f03_20210124.pth - Config: configs/fashion/2d_kpt_sview_rgb_img/topdown_heatmap/deepfashion/res50_deepfashion_lower_256x192.py - In Collection: fashion--2d_kpt_sview_rgb_img--topdown_heatmap--deepfashion--resnet_deepfashion - [SimpleBaseline2D+ResNet@DeepFashion] + In Collection: SimpleBaseline2D Metadata: + Architecture: *id001 Training Data: DeepFashion Name: topdown_heatmap_res50_deepfashion_lower_256x192 + README: configs/fashion/2d_kpt_sview_rgb_img/topdown_heatmap/deepfashion/resnet_deepfashion.md Results: - Dataset: DeepFashion Metrics: @@ -39,11 +37,12 @@ Models: Task: Fashion 2D Keypoint Weights: https://download.openmmlab.com/mmpose/fashion/resnet/res50_deepfashion_lower_256x192-1292a839_20210124.pth - Config: configs/fashion/2d_kpt_sview_rgb_img/topdown_heatmap/deepfashion/res50_deepfashion_full_256x192.py - In Collection: fashion--2d_kpt_sview_rgb_img--topdown_heatmap--deepfashion--resnet_deepfashion - [SimpleBaseline2D+ResNet@DeepFashion] + In Collection: SimpleBaseline2D Metadata: + Architecture: *id001 Training Data: DeepFashion Name: topdown_heatmap_res50_deepfashion_full_256x192 + README: configs/fashion/2d_kpt_sview_rgb_img/topdown_heatmap/deepfashion/resnet_deepfashion.md Results: - Dataset: DeepFashion Metrics: diff --git a/configs/hand/2d_kpt_sview_rgb_img/deeppose/onehand10k/resnet_onehand10k.yml b/configs/hand/2d_kpt_sview_rgb_img/deeppose/onehand10k/resnet_onehand10k.yml index 889213fcf8..d8ea5aca62 100644 --- a/configs/hand/2d_kpt_sview_rgb_img/deeppose/onehand10k/resnet_onehand10k.yml +++ b/configs/hand/2d_kpt_sview_rgb_img/deeppose/onehand10k/resnet_onehand10k.yml @@ -1,20 +1,18 @@ Collections: -- Metadata: - Architecture: - - DeepPose - - ResNet - Name: hand--2d_kpt_sview_rgb_img--deeppose--onehand10k--resnet_onehand10k [DeepPose+ResNet@OneHand10K] +- Name: ResNet Paper: Title: Deep residual learning for image recognition URL: http://openaccess.thecvf.com/content_cvpr_2016/html/He_Deep_Residual_Learning_CVPR_2016_paper.html - README: configs/hand/2d_kpt_sview_rgb_img/deeppose/onehand10k/resnet_onehand10k.md Models: - Config: configs/hand/2d_kpt_sview_rgb_img/deeppose/onehand10k/res50_onehand10k_256x256.py - In Collection: hand--2d_kpt_sview_rgb_img--deeppose--onehand10k--resnet_onehand10k - [DeepPose+ResNet@OneHand10K] + In Collection: ResNet Metadata: + Architecture: + - DeepPose + - ResNet Training Data: OneHand10K Name: deeppose_res50_onehand10k_256x256 + README: configs/hand/2d_kpt_sview_rgb_img/deeppose/onehand10k/resnet_onehand10k.md Results: - Dataset: OneHand10K Metrics: diff --git a/configs/hand/2d_kpt_sview_rgb_img/deeppose/panoptic2d/resnet_panoptic2d.yml b/configs/hand/2d_kpt_sview_rgb_img/deeppose/panoptic2d/resnet_panoptic2d.yml index dee9347b91..3363364407 100644 --- a/configs/hand/2d_kpt_sview_rgb_img/deeppose/panoptic2d/resnet_panoptic2d.yml +++ b/configs/hand/2d_kpt_sview_rgb_img/deeppose/panoptic2d/resnet_panoptic2d.yml @@ -1,21 +1,18 @@ Collections: -- Metadata: - Architecture: - - DeepPose - - ResNet - Name: hand--2d_kpt_sview_rgb_img--deeppose--panoptic2d--resnet_panoptic2d [DeepPose+ResNet@CMU - Panoptic HandDB] +- Name: ResNet Paper: Title: Deep residual learning for image recognition URL: http://openaccess.thecvf.com/content_cvpr_2016/html/He_Deep_Residual_Learning_CVPR_2016_paper.html - README: configs/hand/2d_kpt_sview_rgb_img/deeppose/panoptic2d/resnet_panoptic2d.md Models: - Config: configs/hand/2d_kpt_sview_rgb_img/deeppose/panoptic2d/res50_panoptic2d_256x256.py - In Collection: hand--2d_kpt_sview_rgb_img--deeppose--panoptic2d--resnet_panoptic2d - [DeepPose+ResNet@CMU Panoptic HandDB] + In Collection: ResNet Metadata: + Architecture: + - DeepPose + - ResNet Training Data: CMU Panoptic HandDB Name: deeppose_res50_panoptic2d_256x256 + README: configs/hand/2d_kpt_sview_rgb_img/deeppose/panoptic2d/resnet_panoptic2d.md Results: - Dataset: CMU Panoptic HandDB Metrics: diff --git a/configs/hand/2d_kpt_sview_rgb_img/deeppose/rhd2d/resnet_rhd2d.yml b/configs/hand/2d_kpt_sview_rgb_img/deeppose/rhd2d/resnet_rhd2d.yml index a27efbe21c..afef7b29e7 100644 --- a/configs/hand/2d_kpt_sview_rgb_img/deeppose/rhd2d/resnet_rhd2d.yml +++ b/configs/hand/2d_kpt_sview_rgb_img/deeppose/rhd2d/resnet_rhd2d.yml @@ -1,19 +1,18 @@ Collections: -- Metadata: - Architecture: - - DeepPose - - ResNet - Name: hand--2d_kpt_sview_rgb_img--deeppose--rhd2d--resnet_rhd2d [DeepPose+ResNet@RHD] +- Name: ResNet Paper: Title: Deep residual learning for image recognition URL: http://openaccess.thecvf.com/content_cvpr_2016/html/He_Deep_Residual_Learning_CVPR_2016_paper.html - README: configs/hand/2d_kpt_sview_rgb_img/deeppose/rhd2d/resnet_rhd2d.md Models: - Config: configs/hand/2d_kpt_sview_rgb_img/deeppose/rhd2d/res50_rhd2d_256x256.py - In Collection: hand--2d_kpt_sview_rgb_img--deeppose--rhd2d--resnet_rhd2d [DeepPose+ResNet@RHD] + In Collection: ResNet Metadata: + Architecture: + - DeepPose + - ResNet Training Data: RHD Name: deeppose_res50_rhd2d_256x256 + README: configs/hand/2d_kpt_sview_rgb_img/deeppose/rhd2d/resnet_rhd2d.md Results: - Dataset: RHD Metrics: diff --git a/configs/hand/2d_kpt_sview_rgb_img/topdown_heatmap/coco_wholebody_hand/hourglass_coco_wholebody_hand.yml b/configs/hand/2d_kpt_sview_rgb_img/topdown_heatmap/coco_wholebody_hand/hourglass_coco_wholebody_hand.yml index 8c7a4e44db..945bbdca8d 100644 --- a/configs/hand/2d_kpt_sview_rgb_img/topdown_heatmap/coco_wholebody_hand/hourglass_coco_wholebody_hand.yml +++ b/configs/hand/2d_kpt_sview_rgb_img/topdown_heatmap/coco_wholebody_hand/hourglass_coco_wholebody_hand.yml @@ -1,20 +1,17 @@ Collections: -- Metadata: - Architecture: - - Hourglass - Name: hand--2d_kpt_sview_rgb_img--topdown_heatmap--coco_wholebody_hand--hourglass_coco_wholebody_hand - [Hourglass@COCO-WholeBody-Hand] +- Name: Hourglass Paper: Title: Stacked hourglass networks for human pose estimation URL: https://link.springer.com/chapter/10.1007/978-3-319-46484-8_29 - README: configs/hand/2d_kpt_sview_rgb_img/topdown_heatmap/coco_wholebody_hand/hourglass_coco_wholebody_hand.md Models: - Config: configs/hand/2d_kpt_sview_rgb_img/topdown_heatmap/coco_wholebody_hand/hourglass52_coco_wholebody_hand_256x256.py - In Collection: hand--2d_kpt_sview_rgb_img--topdown_heatmap--coco_wholebody_hand--hourglass_coco_wholebody_hand - [Hourglass@COCO-WholeBody-Hand] + In Collection: Hourglass Metadata: + Architecture: + - Hourglass Training Data: COCO-WholeBody-Hand Name: topdown_heatmap_hourglass52_coco_wholebody_hand_256x256 + README: configs/hand/2d_kpt_sview_rgb_img/topdown_heatmap/coco_wholebody_hand/hourglass_coco_wholebody_hand.md Results: - Dataset: COCO-WholeBody-Hand Metrics: diff --git a/configs/hand/2d_kpt_sview_rgb_img/topdown_heatmap/coco_wholebody_hand/hrnetv2_coco_wholebody_hand.yml b/configs/hand/2d_kpt_sview_rgb_img/topdown_heatmap/coco_wholebody_hand/hrnetv2_coco_wholebody_hand.yml index 6483bb255a..1d52867d8a 100644 --- a/configs/hand/2d_kpt_sview_rgb_img/topdown_heatmap/coco_wholebody_hand/hrnetv2_coco_wholebody_hand.yml +++ b/configs/hand/2d_kpt_sview_rgb_img/topdown_heatmap/coco_wholebody_hand/hrnetv2_coco_wholebody_hand.yml @@ -1,20 +1,17 @@ Collections: -- Metadata: - Architecture: - - HRNetv2 - Name: hand--2d_kpt_sview_rgb_img--topdown_heatmap--coco_wholebody_hand--hrnetv2_coco_wholebody_hand - [HRNetv2@COCO-WholeBody-Hand] +- Name: HRNetv2 Paper: Title: Deep High-Resolution Representation Learning for Visual Recognition URL: https://ieeexplore.ieee.org/abstract/document/9052469/ - README: configs/hand/2d_kpt_sview_rgb_img/topdown_heatmap/coco_wholebody_hand/hrnetv2_coco_wholebody_hand.md Models: - Config: configs/hand/2d_kpt_sview_rgb_img/topdown_heatmap/coco_wholebody_hand/hrnetv2_w18_coco_wholebody_hand_256x256.py - In Collection: hand--2d_kpt_sview_rgb_img--topdown_heatmap--coco_wholebody_hand--hrnetv2_coco_wholebody_hand - [HRNetv2@COCO-WholeBody-Hand] + In Collection: HRNetv2 Metadata: + Architecture: + - HRNetv2 Training Data: COCO-WholeBody-Hand Name: topdown_heatmap_hrnetv2_w18_coco_wholebody_hand_256x256 + README: configs/hand/2d_kpt_sview_rgb_img/topdown_heatmap/coco_wholebody_hand/hrnetv2_coco_wholebody_hand.md Results: - Dataset: COCO-WholeBody-Hand Metrics: diff --git a/configs/hand/2d_kpt_sview_rgb_img/topdown_heatmap/coco_wholebody_hand/hrnetv2_dark_coco_wholebody_hand.yml b/configs/hand/2d_kpt_sview_rgb_img/topdown_heatmap/coco_wholebody_hand/hrnetv2_dark_coco_wholebody_hand.yml index 3d9b85bf1f..78ac53ef6e 100644 --- a/configs/hand/2d_kpt_sview_rgb_img/topdown_heatmap/coco_wholebody_hand/hrnetv2_dark_coco_wholebody_hand.yml +++ b/configs/hand/2d_kpt_sview_rgb_img/topdown_heatmap/coco_wholebody_hand/hrnetv2_dark_coco_wholebody_hand.yml @@ -1,21 +1,18 @@ Collections: -- Metadata: - Architecture: - - HRNetv2 - - DarkPose - Name: hand--2d_kpt_sview_rgb_img--topdown_heatmap--coco_wholebody_hand--hrnetv2_dark_coco_wholebody_hand - [HRNetv2+DarkPose@COCO-WholeBody-Hand] +- Name: DarkPose Paper: Title: Distribution-aware coordinate representation for human pose estimation URL: http://openaccess.thecvf.com/content_CVPR_2020/html/Zhang_Distribution-Aware_Coordinate_Representation_for_Human_Pose_Estimation_CVPR_2020_paper.html - README: configs/hand/2d_kpt_sview_rgb_img/topdown_heatmap/coco_wholebody_hand/hrnetv2_dark_coco_wholebody_hand.md Models: - Config: configs/hand/2d_kpt_sview_rgb_img/topdown_heatmap/coco_wholebody_hand/hrnetv2_w18_coco_wholebody_hand_256x256_dark.py - In Collection: hand--2d_kpt_sview_rgb_img--topdown_heatmap--coco_wholebody_hand--hrnetv2_dark_coco_wholebody_hand - [HRNetv2+DarkPose@COCO-WholeBody-Hand] + In Collection: DarkPose Metadata: + Architecture: + - HRNetv2 + - DarkPose Training Data: COCO-WholeBody-Hand Name: topdown_heatmap_hrnetv2_w18_coco_wholebody_hand_256x256_dark + README: configs/hand/2d_kpt_sview_rgb_img/topdown_heatmap/coco_wholebody_hand/hrnetv2_dark_coco_wholebody_hand.md Results: - Dataset: COCO-WholeBody-Hand Metrics: diff --git a/configs/hand/2d_kpt_sview_rgb_img/topdown_heatmap/coco_wholebody_hand/litehrnet_coco_wholebody_hand.yml b/configs/hand/2d_kpt_sview_rgb_img/topdown_heatmap/coco_wholebody_hand/litehrnet_coco_wholebody_hand.yml index db21725d25..278fa90488 100644 --- a/configs/hand/2d_kpt_sview_rgb_img/topdown_heatmap/coco_wholebody_hand/litehrnet_coco_wholebody_hand.yml +++ b/configs/hand/2d_kpt_sview_rgb_img/topdown_heatmap/coco_wholebody_hand/litehrnet_coco_wholebody_hand.yml @@ -1,20 +1,17 @@ Collections: -- Metadata: - Architecture: - - LiteHRNet - Name: hand--2d_kpt_sview_rgb_img--topdown_heatmap--coco_wholebody_hand--litehrnet_coco_wholebody_hand - [LiteHRNet@COCO-WholeBody-Hand] +- Name: LiteHRNet Paper: Title: 'Lite-HRNet: A Lightweight High-Resolution Network' URL: https://arxiv.org/abs/2104.06403 - README: configs/hand/2d_kpt_sview_rgb_img/topdown_heatmap/coco_wholebody_hand/litehrnet_coco_wholebody_hand.md Models: - Config: configs/hand/2d_kpt_sview_rgb_img/topdown_heatmap/coco_wholebody_hand/litehrnet_w18_coco_wholebody_hand_256x256.py - In Collection: hand--2d_kpt_sview_rgb_img--topdown_heatmap--coco_wholebody_hand--litehrnet_coco_wholebody_hand - [LiteHRNet@COCO-WholeBody-Hand] + In Collection: LiteHRNet Metadata: + Architecture: + - LiteHRNet Training Data: COCO-WholeBody-Hand Name: topdown_heatmap_litehrnet_w18_coco_wholebody_hand_256x256 + README: configs/hand/2d_kpt_sview_rgb_img/topdown_heatmap/coco_wholebody_hand/litehrnet_coco_wholebody_hand.md Results: - Dataset: COCO-WholeBody-Hand Metrics: diff --git a/configs/hand/2d_kpt_sview_rgb_img/topdown_heatmap/coco_wholebody_hand/mobilenetv2_coco_wholebody_hand.yml b/configs/hand/2d_kpt_sview_rgb_img/topdown_heatmap/coco_wholebody_hand/mobilenetv2_coco_wholebody_hand.yml index 3a3b3ff0a5..0c228c58c1 100644 --- a/configs/hand/2d_kpt_sview_rgb_img/topdown_heatmap/coco_wholebody_hand/mobilenetv2_coco_wholebody_hand.yml +++ b/configs/hand/2d_kpt_sview_rgb_img/topdown_heatmap/coco_wholebody_hand/mobilenetv2_coco_wholebody_hand.yml @@ -1,20 +1,17 @@ Collections: -- Metadata: - Architecture: - - MobilenetV2 - Name: hand--2d_kpt_sview_rgb_img--topdown_heatmap--coco_wholebody_hand--mobilenetv2_coco_wholebody_hand - [MobilenetV2@COCO-WholeBody-Hand] +- Name: MobilenetV2 Paper: Title: 'Mobilenetv2: Inverted residuals and linear bottlenecks' URL: http://openaccess.thecvf.com/content_cvpr_2018/html/Sandler_MobileNetV2_Inverted_Residuals_CVPR_2018_paper.html - README: configs/hand/2d_kpt_sview_rgb_img/topdown_heatmap/coco_wholebody_hand/mobilenetv2_coco_wholebody_hand.md Models: - Config: configs/hand/2d_kpt_sview_rgb_img/topdown_heatmap/coco_wholebody_hand/mobilenetv2_coco_wholebody_hand_256x256.py - In Collection: hand--2d_kpt_sview_rgb_img--topdown_heatmap--coco_wholebody_hand--mobilenetv2_coco_wholebody_hand - [MobilenetV2@COCO-WholeBody-Hand] + In Collection: MobilenetV2 Metadata: + Architecture: + - MobilenetV2 Training Data: COCO-WholeBody-Hand Name: topdown_heatmap_mobilenetv2_coco_wholebody_hand_256x256 + README: configs/hand/2d_kpt_sview_rgb_img/topdown_heatmap/coco_wholebody_hand/mobilenetv2_coco_wholebody_hand.md Results: - Dataset: COCO-WholeBody-Hand Metrics: diff --git a/configs/hand/2d_kpt_sview_rgb_img/topdown_heatmap/coco_wholebody_hand/resnet_coco_wholebody_hand.yml b/configs/hand/2d_kpt_sview_rgb_img/topdown_heatmap/coco_wholebody_hand/resnet_coco_wholebody_hand.yml index 4b61f39f50..f6ab4d814b 100644 --- a/configs/hand/2d_kpt_sview_rgb_img/topdown_heatmap/coco_wholebody_hand/resnet_coco_wholebody_hand.yml +++ b/configs/hand/2d_kpt_sview_rgb_img/topdown_heatmap/coco_wholebody_hand/resnet_coco_wholebody_hand.yml @@ -1,21 +1,18 @@ Collections: -- Metadata: - Architecture: - - SimpleBaseline2D - - ResNet - Name: hand--2d_kpt_sview_rgb_img--topdown_heatmap--coco_wholebody_hand--resnet_coco_wholebody_hand - [SimpleBaseline2D+ResNet@COCO-WholeBody-Hand] +- Name: SimpleBaseline2D Paper: Title: Simple baselines for human pose estimation and tracking URL: http://openaccess.thecvf.com/content_ECCV_2018/html/Bin_Xiao_Simple_Baselines_for_ECCV_2018_paper.html - README: configs/hand/2d_kpt_sview_rgb_img/topdown_heatmap/coco_wholebody_hand/resnet_coco_wholebody_hand.md Models: - Config: configs/hand/2d_kpt_sview_rgb_img/topdown_heatmap/coco_wholebody_hand/res50_coco_wholebody_hand_256x256.py - In Collection: hand--2d_kpt_sview_rgb_img--topdown_heatmap--coco_wholebody_hand--resnet_coco_wholebody_hand - [SimpleBaseline2D+ResNet@COCO-WholeBody-Hand] + In Collection: SimpleBaseline2D Metadata: + Architecture: + - SimpleBaseline2D + - ResNet Training Data: COCO-WholeBody-Hand Name: topdown_heatmap_res50_coco_wholebody_hand_256x256 + README: configs/hand/2d_kpt_sview_rgb_img/topdown_heatmap/coco_wholebody_hand/resnet_coco_wholebody_hand.md Results: - Dataset: COCO-WholeBody-Hand Metrics: diff --git a/configs/hand/2d_kpt_sview_rgb_img/topdown_heatmap/coco_wholebody_hand/scnet_coco_wholebody_hand.yml b/configs/hand/2d_kpt_sview_rgb_img/topdown_heatmap/coco_wholebody_hand/scnet_coco_wholebody_hand.yml index 60c115ad7c..fbea13ca3e 100644 --- a/configs/hand/2d_kpt_sview_rgb_img/topdown_heatmap/coco_wholebody_hand/scnet_coco_wholebody_hand.yml +++ b/configs/hand/2d_kpt_sview_rgb_img/topdown_heatmap/coco_wholebody_hand/scnet_coco_wholebody_hand.yml @@ -1,20 +1,17 @@ Collections: -- Metadata: - Architecture: - - SCNet - Name: hand--2d_kpt_sview_rgb_img--topdown_heatmap--coco_wholebody_hand--scnet_coco_wholebody_hand - [SCNet@COCO-WholeBody-Hand] +- Name: SCNet Paper: Title: Improving Convolutional Networks with Self-Calibrated Convolutions URL: http://openaccess.thecvf.com/content_CVPR_2020/html/Liu_Improving_Convolutional_Networks_With_Self-Calibrated_Convolutions_CVPR_2020_paper.html - README: configs/hand/2d_kpt_sview_rgb_img/topdown_heatmap/coco_wholebody_hand/scnet_coco_wholebody_hand.md Models: - Config: configs/hand/2d_kpt_sview_rgb_img/topdown_heatmap/coco_wholebody_hand/scnet50_coco_wholebody_hand_256x256.py - In Collection: hand--2d_kpt_sview_rgb_img--topdown_heatmap--coco_wholebody_hand--scnet_coco_wholebody_hand - [SCNet@COCO-WholeBody-Hand] + In Collection: SCNet Metadata: + Architecture: + - SCNet Training Data: COCO-WholeBody-Hand Name: topdown_heatmap_scnet50_coco_wholebody_hand_256x256 + README: configs/hand/2d_kpt_sview_rgb_img/topdown_heatmap/coco_wholebody_hand/scnet_coco_wholebody_hand.md Results: - Dataset: COCO-WholeBody-Hand Metrics: diff --git a/configs/hand/2d_kpt_sview_rgb_img/topdown_heatmap/freihand2d/resnet_freihand2d.yml b/configs/hand/2d_kpt_sview_rgb_img/topdown_heatmap/freihand2d/resnet_freihand2d.yml index 74b58ac570..0f8d8751e7 100644 --- a/configs/hand/2d_kpt_sview_rgb_img/topdown_heatmap/freihand2d/resnet_freihand2d.yml +++ b/configs/hand/2d_kpt_sview_rgb_img/topdown_heatmap/freihand2d/resnet_freihand2d.yml @@ -1,21 +1,18 @@ Collections: -- Metadata: - Architecture: - - SimpleBaseline2D - - ResNet - Name: hand--2d_kpt_sview_rgb_img--topdown_heatmap--freihand2d--resnet_freihand2d - [SimpleBaseline2D+ResNet@FreiHand] +- Name: SimpleBaseline2D Paper: Title: Simple baselines for human pose estimation and tracking URL: http://openaccess.thecvf.com/content_ECCV_2018/html/Bin_Xiao_Simple_Baselines_for_ECCV_2018_paper.html - README: configs/hand/2d_kpt_sview_rgb_img/topdown_heatmap/freihand2d/resnet_freihand2d.md Models: - Config: configs/hand/2d_kpt_sview_rgb_img/topdown_heatmap/freihand2d/res50_freihand_224x224.py - In Collection: hand--2d_kpt_sview_rgb_img--topdown_heatmap--freihand2d--resnet_freihand2d - [SimpleBaseline2D+ResNet@FreiHand] + In Collection: SimpleBaseline2D Metadata: + Architecture: &id001 + - SimpleBaseline2D + - ResNet Training Data: FreiHand Name: topdown_heatmap_res50_freihand_224x224 + README: configs/hand/2d_kpt_sview_rgb_img/topdown_heatmap/freihand2d/resnet_freihand2d.md Results: - Dataset: FreiHand Metrics: @@ -25,11 +22,12 @@ Models: Task: Hand 2D Keypoint Weights: https://download.openmmlab.com/mmpose/hand/resnet/res50_freihand_224x224-ff0799bc_20200914.pth - Config: configs/hand/2d_kpt_sview_rgb_img/topdown_heatmap/freihand2d/res50_freihand_224x224.py - In Collection: hand--2d_kpt_sview_rgb_img--topdown_heatmap--freihand2d--resnet_freihand2d - [SimpleBaseline2D+ResNet@FreiHand] + In Collection: SimpleBaseline2D Metadata: + Architecture: *id001 Training Data: FreiHand Name: topdown_heatmap_res50_freihand_224x224 + README: configs/hand/2d_kpt_sview_rgb_img/topdown_heatmap/freihand2d/resnet_freihand2d.md Results: - Dataset: FreiHand Metrics: diff --git a/configs/hand/2d_kpt_sview_rgb_img/topdown_heatmap/interhand2d/resnet_interhand2d.yml b/configs/hand/2d_kpt_sview_rgb_img/topdown_heatmap/interhand2d/resnet_interhand2d.yml index 2556bb5ccf..ed2e0635f1 100644 --- a/configs/hand/2d_kpt_sview_rgb_img/topdown_heatmap/interhand2d/resnet_interhand2d.yml +++ b/configs/hand/2d_kpt_sview_rgb_img/topdown_heatmap/interhand2d/resnet_interhand2d.yml @@ -1,21 +1,18 @@ Collections: -- Metadata: - Architecture: - - SimpleBaseline2D - - ResNet - Name: hand--2d_kpt_sview_rgb_img--topdown_heatmap--interhand2d--resnet_interhand2d - [SimpleBaseline2D+ResNet@InterHand2.6M] +- Name: SimpleBaseline2D Paper: Title: Simple baselines for human pose estimation and tracking URL: http://openaccess.thecvf.com/content_ECCV_2018/html/Bin_Xiao_Simple_Baselines_for_ECCV_2018_paper.html - README: configs/hand/2d_kpt_sview_rgb_img/topdown_heatmap/interhand2d/resnet_interhand2d.md Models: - Config: configs/hand/2d_kpt_sview_rgb_img/topdown_heatmap/interhand2d/res50_interhand2d_human_256x256.py - In Collection: hand--2d_kpt_sview_rgb_img--topdown_heatmap--interhand2d--resnet_interhand2d - [SimpleBaseline2D+ResNet@InterHand2.6M] + In Collection: SimpleBaseline2D Metadata: + Architecture: &id001 + - SimpleBaseline2D + - ResNet Training Data: InterHand2.6M Name: topdown_heatmap_res50_interhand2d_human_256x256 + README: configs/hand/2d_kpt_sview_rgb_img/topdown_heatmap/interhand2d/resnet_interhand2d.md Results: - Dataset: InterHand2.6M Metrics: @@ -25,11 +22,12 @@ Models: Task: Hand 2D Keypoint Weights: https://download.openmmlab.com/mmpose/hand/resnet/res50_interhand2d_256x256_human-77b27d1a_20201029.pth - Config: configs/hand/2d_kpt_sview_rgb_img/topdown_heatmap/interhand2d/res50_interhand2d_human_256x256.py - In Collection: hand--2d_kpt_sview_rgb_img--topdown_heatmap--interhand2d--resnet_interhand2d - [SimpleBaseline2D+ResNet@InterHand2.6M] + In Collection: SimpleBaseline2D Metadata: + Architecture: *id001 Training Data: InterHand2.6M Name: topdown_heatmap_res50_interhand2d_human_256x256 + README: configs/hand/2d_kpt_sview_rgb_img/topdown_heatmap/interhand2d/resnet_interhand2d.md Results: - Dataset: InterHand2.6M Metrics: @@ -39,11 +37,12 @@ Models: Task: Hand 2D Keypoint Weights: https://download.openmmlab.com/mmpose/hand/resnet/res50_interhand2d_256x256_human-77b27d1a_20201029.pth - Config: configs/hand/2d_kpt_sview_rgb_img/topdown_heatmap/interhand2d/res50_interhand2d_human_256x256.py - In Collection: hand--2d_kpt_sview_rgb_img--topdown_heatmap--interhand2d--resnet_interhand2d - [SimpleBaseline2D+ResNet@InterHand2.6M] + In Collection: SimpleBaseline2D Metadata: + Architecture: *id001 Training Data: InterHand2.6M Name: topdown_heatmap_res50_interhand2d_human_256x256 + README: configs/hand/2d_kpt_sview_rgb_img/topdown_heatmap/interhand2d/resnet_interhand2d.md Results: - Dataset: InterHand2.6M Metrics: @@ -53,11 +52,12 @@ Models: Task: Hand 2D Keypoint Weights: https://download.openmmlab.com/mmpose/hand/resnet/res50_interhand2d_256x256_human-77b27d1a_20201029.pth - Config: configs/hand/2d_kpt_sview_rgb_img/topdown_heatmap/interhand2d/res50_interhand2d_human_256x256.py - In Collection: hand--2d_kpt_sview_rgb_img--topdown_heatmap--interhand2d--resnet_interhand2d - [SimpleBaseline2D+ResNet@InterHand2.6M] + In Collection: SimpleBaseline2D Metadata: + Architecture: *id001 Training Data: InterHand2.6M Name: topdown_heatmap_res50_interhand2d_human_256x256 + README: configs/hand/2d_kpt_sview_rgb_img/topdown_heatmap/interhand2d/resnet_interhand2d.md Results: - Dataset: InterHand2.6M Metrics: @@ -67,11 +67,12 @@ Models: Task: Hand 2D Keypoint Weights: https://download.openmmlab.com/mmpose/hand/resnet/res50_interhand2d_256x256_human-77b27d1a_20201029.pth - Config: configs/hand/2d_kpt_sview_rgb_img/topdown_heatmap/interhand2d/res50_interhand2d_machine_256x256.py - In Collection: hand--2d_kpt_sview_rgb_img--topdown_heatmap--interhand2d--resnet_interhand2d - [SimpleBaseline2D+ResNet@InterHand2.6M] + In Collection: SimpleBaseline2D Metadata: + Architecture: *id001 Training Data: InterHand2.6M Name: topdown_heatmap_res50_interhand2d_machine_256x256 + README: configs/hand/2d_kpt_sview_rgb_img/topdown_heatmap/interhand2d/resnet_interhand2d.md Results: - Dataset: InterHand2.6M Metrics: @@ -81,11 +82,12 @@ Models: Task: Hand 2D Keypoint Weights: https://download.openmmlab.com/mmpose/hand/resnet/res50_interhand2d_256x256_machine-8f3efe9a_20201102.pth - Config: configs/hand/2d_kpt_sview_rgb_img/topdown_heatmap/interhand2d/res50_interhand2d_machine_256x256.py - In Collection: hand--2d_kpt_sview_rgb_img--topdown_heatmap--interhand2d--resnet_interhand2d - [SimpleBaseline2D+ResNet@InterHand2.6M] + In Collection: SimpleBaseline2D Metadata: + Architecture: *id001 Training Data: InterHand2.6M Name: topdown_heatmap_res50_interhand2d_machine_256x256 + README: configs/hand/2d_kpt_sview_rgb_img/topdown_heatmap/interhand2d/resnet_interhand2d.md Results: - Dataset: InterHand2.6M Metrics: @@ -95,11 +97,12 @@ Models: Task: Hand 2D Keypoint Weights: https://download.openmmlab.com/mmpose/hand/resnet/res50_interhand2d_256x256_machine-8f3efe9a_20201102.pth - Config: configs/hand/2d_kpt_sview_rgb_img/topdown_heatmap/interhand2d/res50_interhand2d_machine_256x256.py - In Collection: hand--2d_kpt_sview_rgb_img--topdown_heatmap--interhand2d--resnet_interhand2d - [SimpleBaseline2D+ResNet@InterHand2.6M] + In Collection: SimpleBaseline2D Metadata: + Architecture: *id001 Training Data: InterHand2.6M Name: topdown_heatmap_res50_interhand2d_machine_256x256 + README: configs/hand/2d_kpt_sview_rgb_img/topdown_heatmap/interhand2d/resnet_interhand2d.md Results: - Dataset: InterHand2.6M Metrics: @@ -109,11 +112,12 @@ Models: Task: Hand 2D Keypoint Weights: https://download.openmmlab.com/mmpose/hand/resnet/res50_interhand2d_256x256_machine-8f3efe9a_20201102.pth - Config: configs/hand/2d_kpt_sview_rgb_img/topdown_heatmap/interhand2d/res50_interhand2d_machine_256x256.py - In Collection: hand--2d_kpt_sview_rgb_img--topdown_heatmap--interhand2d--resnet_interhand2d - [SimpleBaseline2D+ResNet@InterHand2.6M] + In Collection: SimpleBaseline2D Metadata: + Architecture: *id001 Training Data: InterHand2.6M Name: topdown_heatmap_res50_interhand2d_machine_256x256 + README: configs/hand/2d_kpt_sview_rgb_img/topdown_heatmap/interhand2d/resnet_interhand2d.md Results: - Dataset: InterHand2.6M Metrics: @@ -123,11 +127,12 @@ Models: Task: Hand 2D Keypoint Weights: https://download.openmmlab.com/mmpose/hand/resnet/res50_interhand2d_256x256_machine-8f3efe9a_20201102.pth - Config: configs/hand/2d_kpt_sview_rgb_img/topdown_heatmap/interhand2d/res50_interhand2d_all_256x256.py - In Collection: hand--2d_kpt_sview_rgb_img--topdown_heatmap--interhand2d--resnet_interhand2d - [SimpleBaseline2D+ResNet@InterHand2.6M] + In Collection: SimpleBaseline2D Metadata: + Architecture: *id001 Training Data: InterHand2.6M Name: topdown_heatmap_res50_interhand2d_all_256x256 + README: configs/hand/2d_kpt_sview_rgb_img/topdown_heatmap/interhand2d/resnet_interhand2d.md Results: - Dataset: InterHand2.6M Metrics: @@ -137,11 +142,12 @@ Models: Task: Hand 2D Keypoint Weights: https://download.openmmlab.com/mmpose/hand/resnet/res50_interhand2d_256x256_all-78cc95d4_20201102.pth - Config: configs/hand/2d_kpt_sview_rgb_img/topdown_heatmap/interhand2d/res50_interhand2d_all_256x256.py - In Collection: hand--2d_kpt_sview_rgb_img--topdown_heatmap--interhand2d--resnet_interhand2d - [SimpleBaseline2D+ResNet@InterHand2.6M] + In Collection: SimpleBaseline2D Metadata: + Architecture: *id001 Training Data: InterHand2.6M Name: topdown_heatmap_res50_interhand2d_all_256x256 + README: configs/hand/2d_kpt_sview_rgb_img/topdown_heatmap/interhand2d/resnet_interhand2d.md Results: - Dataset: InterHand2.6M Metrics: @@ -151,11 +157,12 @@ Models: Task: Hand 2D Keypoint Weights: https://download.openmmlab.com/mmpose/hand/resnet/res50_interhand2d_256x256_all-78cc95d4_20201102.pth - Config: configs/hand/2d_kpt_sview_rgb_img/topdown_heatmap/interhand2d/res50_interhand2d_all_256x256.py - In Collection: hand--2d_kpt_sview_rgb_img--topdown_heatmap--interhand2d--resnet_interhand2d - [SimpleBaseline2D+ResNet@InterHand2.6M] + In Collection: SimpleBaseline2D Metadata: + Architecture: *id001 Training Data: InterHand2.6M Name: topdown_heatmap_res50_interhand2d_all_256x256 + README: configs/hand/2d_kpt_sview_rgb_img/topdown_heatmap/interhand2d/resnet_interhand2d.md Results: - Dataset: InterHand2.6M Metrics: @@ -165,11 +172,12 @@ Models: Task: Hand 2D Keypoint Weights: https://download.openmmlab.com/mmpose/hand/resnet/res50_interhand2d_256x256_all-78cc95d4_20201102.pth - Config: configs/hand/2d_kpt_sview_rgb_img/topdown_heatmap/interhand2d/res50_interhand2d_all_256x256.py - In Collection: hand--2d_kpt_sview_rgb_img--topdown_heatmap--interhand2d--resnet_interhand2d - [SimpleBaseline2D+ResNet@InterHand2.6M] + In Collection: SimpleBaseline2D Metadata: + Architecture: *id001 Training Data: InterHand2.6M Name: topdown_heatmap_res50_interhand2d_all_256x256 + README: configs/hand/2d_kpt_sview_rgb_img/topdown_heatmap/interhand2d/resnet_interhand2d.md Results: - Dataset: InterHand2.6M Metrics: diff --git a/configs/hand/2d_kpt_sview_rgb_img/topdown_heatmap/onehand10k/hrnetv2_dark_onehand10k.yml b/configs/hand/2d_kpt_sview_rgb_img/topdown_heatmap/onehand10k/hrnetv2_dark_onehand10k.yml index ac87aa68d6..47b1b663b4 100644 --- a/configs/hand/2d_kpt_sview_rgb_img/topdown_heatmap/onehand10k/hrnetv2_dark_onehand10k.yml +++ b/configs/hand/2d_kpt_sview_rgb_img/topdown_heatmap/onehand10k/hrnetv2_dark_onehand10k.yml @@ -1,21 +1,18 @@ Collections: -- Metadata: - Architecture: - - HRNetv2 - - DarkPose - Name: hand--2d_kpt_sview_rgb_img--topdown_heatmap--onehand10k--hrnetv2_dark_onehand10k - [HRNetv2+DarkPose@OneHand10K] +- Name: DarkPose Paper: Title: Distribution-aware coordinate representation for human pose estimation URL: http://openaccess.thecvf.com/content_CVPR_2020/html/Zhang_Distribution-Aware_Coordinate_Representation_for_Human_Pose_Estimation_CVPR_2020_paper.html - README: configs/hand/2d_kpt_sview_rgb_img/topdown_heatmap/onehand10k/hrnetv2_dark_onehand10k.md Models: - Config: configs/hand/2d_kpt_sview_rgb_img/topdown_heatmap/onehand10k/hrnetv2_w18_onehand10k_256x256_dark.py - In Collection: hand--2d_kpt_sview_rgb_img--topdown_heatmap--onehand10k--hrnetv2_dark_onehand10k - [HRNetv2+DarkPose@OneHand10K] + In Collection: DarkPose Metadata: + Architecture: + - HRNetv2 + - DarkPose Training Data: OneHand10K Name: topdown_heatmap_hrnetv2_w18_onehand10k_256x256_dark + README: configs/hand/2d_kpt_sview_rgb_img/topdown_heatmap/onehand10k/hrnetv2_dark_onehand10k.md Results: - Dataset: OneHand10K Metrics: diff --git a/configs/hand/2d_kpt_sview_rgb_img/topdown_heatmap/onehand10k/hrnetv2_onehand10k.yml b/configs/hand/2d_kpt_sview_rgb_img/topdown_heatmap/onehand10k/hrnetv2_onehand10k.yml index 0d16aeedd6..079d814750 100644 --- a/configs/hand/2d_kpt_sview_rgb_img/topdown_heatmap/onehand10k/hrnetv2_onehand10k.yml +++ b/configs/hand/2d_kpt_sview_rgb_img/topdown_heatmap/onehand10k/hrnetv2_onehand10k.yml @@ -1,20 +1,17 @@ Collections: -- Metadata: - Architecture: - - HRNetv2 - Name: hand--2d_kpt_sview_rgb_img--topdown_heatmap--onehand10k--hrnetv2_onehand10k - [HRNetv2@OneHand10K] +- Name: HRNetv2 Paper: Title: Deep High-Resolution Representation Learning for Visual Recognition URL: https://ieeexplore.ieee.org/abstract/document/9052469/ - README: configs/hand/2d_kpt_sview_rgb_img/topdown_heatmap/onehand10k/hrnetv2_onehand10k.md Models: - Config: configs/hand/2d_kpt_sview_rgb_img/topdown_heatmap/onehand10k/hrnetv2_w18_onehand10k_256x256.py - In Collection: hand--2d_kpt_sview_rgb_img--topdown_heatmap--onehand10k--hrnetv2_onehand10k - [HRNetv2@OneHand10K] + In Collection: HRNetv2 Metadata: + Architecture: + - HRNetv2 Training Data: OneHand10K Name: topdown_heatmap_hrnetv2_w18_onehand10k_256x256 + README: configs/hand/2d_kpt_sview_rgb_img/topdown_heatmap/onehand10k/hrnetv2_onehand10k.md Results: - Dataset: OneHand10K Metrics: diff --git a/configs/hand/2d_kpt_sview_rgb_img/topdown_heatmap/onehand10k/hrnetv2_udp_onehand10k.yml b/configs/hand/2d_kpt_sview_rgb_img/topdown_heatmap/onehand10k/hrnetv2_udp_onehand10k.yml index 9aee84e084..adf4bfde9d 100644 --- a/configs/hand/2d_kpt_sview_rgb_img/topdown_heatmap/onehand10k/hrnetv2_udp_onehand10k.yml +++ b/configs/hand/2d_kpt_sview_rgb_img/topdown_heatmap/onehand10k/hrnetv2_udp_onehand10k.yml @@ -1,22 +1,19 @@ Collections: -- Metadata: - Architecture: - - HRNetv2 - - UDP - Name: hand--2d_kpt_sview_rgb_img--topdown_heatmap--onehand10k--hrnetv2_udp_onehand10k - [HRNetv2+UDP@OneHand10K] +- Name: UDP Paper: Title: 'The Devil Is in the Details: Delving Into Unbiased Data Processing for Human Pose Estimation' URL: http://openaccess.thecvf.com/content_CVPR_2020/html/Huang_The_Devil_Is_in_the_Details_Delving_Into_Unbiased_Data_CVPR_2020_paper.html - README: configs/hand/2d_kpt_sview_rgb_img/topdown_heatmap/onehand10k/hrnetv2_udp_onehand10k.md Models: - Config: configs/hand/2d_kpt_sview_rgb_img/topdown_heatmap/onehand10k/hrnetv2_w18_onehand10k_256x256_udp.py - In Collection: hand--2d_kpt_sview_rgb_img--topdown_heatmap--onehand10k--hrnetv2_udp_onehand10k - [HRNetv2+UDP@OneHand10K] + In Collection: UDP Metadata: + Architecture: + - HRNetv2 + - UDP Training Data: OneHand10K Name: topdown_heatmap_hrnetv2_w18_onehand10k_256x256_udp + README: configs/hand/2d_kpt_sview_rgb_img/topdown_heatmap/onehand10k/hrnetv2_udp_onehand10k.md Results: - Dataset: OneHand10K Metrics: diff --git a/configs/hand/2d_kpt_sview_rgb_img/topdown_heatmap/onehand10k/mobilenetv2_onehand10k.yml b/configs/hand/2d_kpt_sview_rgb_img/topdown_heatmap/onehand10k/mobilenetv2_onehand10k.yml index 49b01bec63..d8915ebb33 100644 --- a/configs/hand/2d_kpt_sview_rgb_img/topdown_heatmap/onehand10k/mobilenetv2_onehand10k.yml +++ b/configs/hand/2d_kpt_sview_rgb_img/topdown_heatmap/onehand10k/mobilenetv2_onehand10k.yml @@ -1,20 +1,17 @@ Collections: -- Metadata: - Architecture: - - MobilenetV2 - Name: hand--2d_kpt_sview_rgb_img--topdown_heatmap--onehand10k--mobilenetv2_onehand10k - [MobilenetV2@OneHand10K] +- Name: MobilenetV2 Paper: Title: 'Mobilenetv2: Inverted residuals and linear bottlenecks' URL: http://openaccess.thecvf.com/content_cvpr_2018/html/Sandler_MobileNetV2_Inverted_Residuals_CVPR_2018_paper.html - README: configs/hand/2d_kpt_sview_rgb_img/topdown_heatmap/onehand10k/mobilenetv2_onehand10k.md Models: - Config: configs/hand/2d_kpt_sview_rgb_img/topdown_heatmap/onehand10k/mobilenetv2_onehand10k_256x256.py - In Collection: hand--2d_kpt_sview_rgb_img--topdown_heatmap--onehand10k--mobilenetv2_onehand10k - [MobilenetV2@OneHand10K] + In Collection: MobilenetV2 Metadata: + Architecture: + - MobilenetV2 Training Data: OneHand10K Name: topdown_heatmap_mobilenetv2_onehand10k_256x256 + README: configs/hand/2d_kpt_sview_rgb_img/topdown_heatmap/onehand10k/mobilenetv2_onehand10k.md Results: - Dataset: OneHand10K Metrics: diff --git a/configs/hand/2d_kpt_sview_rgb_img/topdown_heatmap/onehand10k/resnet_onehand10k.yml b/configs/hand/2d_kpt_sview_rgb_img/topdown_heatmap/onehand10k/resnet_onehand10k.yml index 8b007ddced..d05edccb4d 100644 --- a/configs/hand/2d_kpt_sview_rgb_img/topdown_heatmap/onehand10k/resnet_onehand10k.yml +++ b/configs/hand/2d_kpt_sview_rgb_img/topdown_heatmap/onehand10k/resnet_onehand10k.yml @@ -1,21 +1,18 @@ Collections: -- Metadata: - Architecture: - - SimpleBaseline2D - - ResNet - Name: hand--2d_kpt_sview_rgb_img--topdown_heatmap--onehand10k--resnet_onehand10k - [SimpleBaseline2D+ResNet@OneHand10K] +- Name: SimpleBaseline2D Paper: Title: Simple baselines for human pose estimation and tracking URL: http://openaccess.thecvf.com/content_ECCV_2018/html/Bin_Xiao_Simple_Baselines_for_ECCV_2018_paper.html - README: configs/hand/2d_kpt_sview_rgb_img/topdown_heatmap/onehand10k/resnet_onehand10k.md Models: - Config: configs/hand/2d_kpt_sview_rgb_img/topdown_heatmap/onehand10k/res50_onehand10k_256x256.py - In Collection: hand--2d_kpt_sview_rgb_img--topdown_heatmap--onehand10k--resnet_onehand10k - [SimpleBaseline2D+ResNet@OneHand10K] + In Collection: SimpleBaseline2D Metadata: + Architecture: + - SimpleBaseline2D + - ResNet Training Data: OneHand10K Name: topdown_heatmap_res50_onehand10k_256x256 + README: configs/hand/2d_kpt_sview_rgb_img/topdown_heatmap/onehand10k/resnet_onehand10k.md Results: - Dataset: OneHand10K Metrics: diff --git a/configs/hand/2d_kpt_sview_rgb_img/topdown_heatmap/panoptic2d/hrnetv2_dark_panoptic2d.yml b/configs/hand/2d_kpt_sview_rgb_img/topdown_heatmap/panoptic2d/hrnetv2_dark_panoptic2d.yml index ea0f7351c2..24d287c1ac 100644 --- a/configs/hand/2d_kpt_sview_rgb_img/topdown_heatmap/panoptic2d/hrnetv2_dark_panoptic2d.yml +++ b/configs/hand/2d_kpt_sview_rgb_img/topdown_heatmap/panoptic2d/hrnetv2_dark_panoptic2d.yml @@ -1,21 +1,18 @@ Collections: -- Metadata: - Architecture: - - HRNetv2 - - DarkPose - Name: hand--2d_kpt_sview_rgb_img--topdown_heatmap--panoptic2d--hrnetv2_dark_panoptic2d - [HRNetv2+DarkPose@CMU Panoptic HandDB] +- Name: DarkPose Paper: Title: Distribution-aware coordinate representation for human pose estimation URL: http://openaccess.thecvf.com/content_CVPR_2020/html/Zhang_Distribution-Aware_Coordinate_Representation_for_Human_Pose_Estimation_CVPR_2020_paper.html - README: configs/hand/2d_kpt_sview_rgb_img/topdown_heatmap/panoptic2d/hrnetv2_dark_panoptic2d.md Models: - Config: configs/hand/2d_kpt_sview_rgb_img/topdown_heatmap/panoptic2d/hrnetv2_w18_panoptic_256x256_dark.py - In Collection: hand--2d_kpt_sview_rgb_img--topdown_heatmap--panoptic2d--hrnetv2_dark_panoptic2d - [HRNetv2+DarkPose@CMU Panoptic HandDB] + In Collection: DarkPose Metadata: + Architecture: + - HRNetv2 + - DarkPose Training Data: CMU Panoptic HandDB Name: topdown_heatmap_hrnetv2_w18_panoptic_256x256_dark + README: configs/hand/2d_kpt_sview_rgb_img/topdown_heatmap/panoptic2d/hrnetv2_dark_panoptic2d.md Results: - Dataset: CMU Panoptic HandDB Metrics: diff --git a/configs/hand/2d_kpt_sview_rgb_img/topdown_heatmap/panoptic2d/hrnetv2_panoptic2d.yml b/configs/hand/2d_kpt_sview_rgb_img/topdown_heatmap/panoptic2d/hrnetv2_panoptic2d.yml index 17d586dada..946c2a73cb 100644 --- a/configs/hand/2d_kpt_sview_rgb_img/topdown_heatmap/panoptic2d/hrnetv2_panoptic2d.yml +++ b/configs/hand/2d_kpt_sview_rgb_img/topdown_heatmap/panoptic2d/hrnetv2_panoptic2d.yml @@ -1,20 +1,17 @@ Collections: -- Metadata: - Architecture: - - HRNetv2 - Name: hand--2d_kpt_sview_rgb_img--topdown_heatmap--panoptic2d--hrnetv2_panoptic2d - [HRNetv2@CMU Panoptic HandDB] +- Name: HRNetv2 Paper: Title: Deep High-Resolution Representation Learning for Visual Recognition URL: https://ieeexplore.ieee.org/abstract/document/9052469/ - README: configs/hand/2d_kpt_sview_rgb_img/topdown_heatmap/panoptic2d/hrnetv2_panoptic2d.md Models: - Config: configs/hand/2d_kpt_sview_rgb_img/topdown_heatmap/panoptic2d/hrnetv2_w18_panoptic_256x256.py - In Collection: hand--2d_kpt_sview_rgb_img--topdown_heatmap--panoptic2d--hrnetv2_panoptic2d - [HRNetv2@CMU Panoptic HandDB] + In Collection: HRNetv2 Metadata: + Architecture: + - HRNetv2 Training Data: CMU Panoptic HandDB Name: topdown_heatmap_hrnetv2_w18_panoptic_256x256 + README: configs/hand/2d_kpt_sview_rgb_img/topdown_heatmap/panoptic2d/hrnetv2_panoptic2d.md Results: - Dataset: CMU Panoptic HandDB Metrics: diff --git a/configs/hand/2d_kpt_sview_rgb_img/topdown_heatmap/panoptic2d/hrnetv2_udp_panoptic2d.yml b/configs/hand/2d_kpt_sview_rgb_img/topdown_heatmap/panoptic2d/hrnetv2_udp_panoptic2d.yml index eb10618878..74ce902e40 100644 --- a/configs/hand/2d_kpt_sview_rgb_img/topdown_heatmap/panoptic2d/hrnetv2_udp_panoptic2d.yml +++ b/configs/hand/2d_kpt_sview_rgb_img/topdown_heatmap/panoptic2d/hrnetv2_udp_panoptic2d.yml @@ -1,22 +1,19 @@ Collections: -- Metadata: - Architecture: - - HRNetv2 - - UDP - Name: hand--2d_kpt_sview_rgb_img--topdown_heatmap--panoptic2d--hrnetv2_udp_panoptic2d - [HRNetv2+UDP@CMU Panoptic HandDB] +- Name: UDP Paper: Title: 'The Devil Is in the Details: Delving Into Unbiased Data Processing for Human Pose Estimation' URL: http://openaccess.thecvf.com/content_CVPR_2020/html/Huang_The_Devil_Is_in_the_Details_Delving_Into_Unbiased_Data_CVPR_2020_paper.html - README: configs/hand/2d_kpt_sview_rgb_img/topdown_heatmap/panoptic2d/hrnetv2_udp_panoptic2d.md Models: - Config: configs/hand/2d_kpt_sview_rgb_img/topdown_heatmap/panoptic2d/hrnetv2_w18_panoptic_256x256_udp.py - In Collection: hand--2d_kpt_sview_rgb_img--topdown_heatmap--panoptic2d--hrnetv2_udp_panoptic2d - [HRNetv2+UDP@CMU Panoptic HandDB] + In Collection: UDP Metadata: + Architecture: + - HRNetv2 + - UDP Training Data: CMU Panoptic HandDB Name: topdown_heatmap_hrnetv2_w18_panoptic_256x256_udp + README: configs/hand/2d_kpt_sview_rgb_img/topdown_heatmap/panoptic2d/hrnetv2_udp_panoptic2d.md Results: - Dataset: CMU Panoptic HandDB Metrics: diff --git a/configs/hand/2d_kpt_sview_rgb_img/topdown_heatmap/panoptic2d/mobilenetv2_panoptic2d.yml b/configs/hand/2d_kpt_sview_rgb_img/topdown_heatmap/panoptic2d/mobilenetv2_panoptic2d.yml index 3622659a75..36d948fda5 100644 --- a/configs/hand/2d_kpt_sview_rgb_img/topdown_heatmap/panoptic2d/mobilenetv2_panoptic2d.yml +++ b/configs/hand/2d_kpt_sview_rgb_img/topdown_heatmap/panoptic2d/mobilenetv2_panoptic2d.yml @@ -1,20 +1,17 @@ Collections: -- Metadata: - Architecture: - - MobilenetV2 - Name: hand--2d_kpt_sview_rgb_img--topdown_heatmap--panoptic2d--mobilenetv2_panoptic2d - [MobilenetV2@CMU Panoptic HandDB] +- Name: MobilenetV2 Paper: Title: 'Mobilenetv2: Inverted residuals and linear bottlenecks' URL: http://openaccess.thecvf.com/content_cvpr_2018/html/Sandler_MobileNetV2_Inverted_Residuals_CVPR_2018_paper.html - README: configs/hand/2d_kpt_sview_rgb_img/topdown_heatmap/panoptic2d/mobilenetv2_panoptic2d.md Models: - Config: configs/hand/2d_kpt_sview_rgb_img/topdown_heatmap/panoptic2d/mobilenetv2_panoptic_256x256.py - In Collection: hand--2d_kpt_sview_rgb_img--topdown_heatmap--panoptic2d--mobilenetv2_panoptic2d - [MobilenetV2@CMU Panoptic HandDB] + In Collection: MobilenetV2 Metadata: + Architecture: + - MobilenetV2 Training Data: CMU Panoptic HandDB Name: topdown_heatmap_mobilenetv2_panoptic_256x256 + README: configs/hand/2d_kpt_sview_rgb_img/topdown_heatmap/panoptic2d/mobilenetv2_panoptic2d.md Results: - Dataset: CMU Panoptic HandDB Metrics: diff --git a/configs/hand/2d_kpt_sview_rgb_img/topdown_heatmap/panoptic2d/resnet_panoptic2d.yml b/configs/hand/2d_kpt_sview_rgb_img/topdown_heatmap/panoptic2d/resnet_panoptic2d.yml index d0b3df0a54..1f1e0b5a60 100644 --- a/configs/hand/2d_kpt_sview_rgb_img/topdown_heatmap/panoptic2d/resnet_panoptic2d.yml +++ b/configs/hand/2d_kpt_sview_rgb_img/topdown_heatmap/panoptic2d/resnet_panoptic2d.yml @@ -1,21 +1,18 @@ Collections: -- Metadata: - Architecture: - - SimpleBaseline2D - - ResNet - Name: hand--2d_kpt_sview_rgb_img--topdown_heatmap--panoptic2d--resnet_panoptic2d - [SimpleBaseline2D+ResNet@CMU Panoptic HandDB] +- Name: SimpleBaseline2D Paper: Title: Simple baselines for human pose estimation and tracking URL: http://openaccess.thecvf.com/content_ECCV_2018/html/Bin_Xiao_Simple_Baselines_for_ECCV_2018_paper.html - README: configs/hand/2d_kpt_sview_rgb_img/topdown_heatmap/panoptic2d/resnet_panoptic2d.md Models: - Config: configs/hand/2d_kpt_sview_rgb_img/topdown_heatmap/panoptic2d/res50_panoptic_256x256.py - In Collection: hand--2d_kpt_sview_rgb_img--topdown_heatmap--panoptic2d--resnet_panoptic2d - [SimpleBaseline2D+ResNet@CMU Panoptic HandDB] + In Collection: SimpleBaseline2D Metadata: + Architecture: + - SimpleBaseline2D + - ResNet Training Data: CMU Panoptic HandDB Name: topdown_heatmap_res50_panoptic_256x256 + README: configs/hand/2d_kpt_sview_rgb_img/topdown_heatmap/panoptic2d/resnet_panoptic2d.md Results: - Dataset: CMU Panoptic HandDB Metrics: diff --git a/configs/hand/2d_kpt_sview_rgb_img/topdown_heatmap/rhd2d/hrnetv2_dark_rhd2d.yml b/configs/hand/2d_kpt_sview_rgb_img/topdown_heatmap/rhd2d/hrnetv2_dark_rhd2d.yml index 396df4b7c4..c235222f4e 100644 --- a/configs/hand/2d_kpt_sview_rgb_img/topdown_heatmap/rhd2d/hrnetv2_dark_rhd2d.yml +++ b/configs/hand/2d_kpt_sview_rgb_img/topdown_heatmap/rhd2d/hrnetv2_dark_rhd2d.yml @@ -1,20 +1,18 @@ Collections: -- Metadata: - Architecture: - - HRNetv2 - - DarkPose - Name: hand--2d_kpt_sview_rgb_img--topdown_heatmap--rhd2d--hrnetv2_dark_rhd2d [HRNetv2+DarkPose@RHD] +- Name: DarkPose Paper: Title: Distribution-aware coordinate representation for human pose estimation URL: http://openaccess.thecvf.com/content_CVPR_2020/html/Zhang_Distribution-Aware_Coordinate_Representation_for_Human_Pose_Estimation_CVPR_2020_paper.html - README: configs/hand/2d_kpt_sview_rgb_img/topdown_heatmap/rhd2d/hrnetv2_dark_rhd2d.md Models: - Config: configs/hand/2d_kpt_sview_rgb_img/topdown_heatmap/rhd2d/hrnetv2_w18_rhd2d_256x256_dark.py - In Collection: hand--2d_kpt_sview_rgb_img--topdown_heatmap--rhd2d--hrnetv2_dark_rhd2d - [HRNetv2+DarkPose@RHD] + In Collection: DarkPose Metadata: + Architecture: + - HRNetv2 + - DarkPose Training Data: RHD Name: topdown_heatmap_hrnetv2_w18_rhd2d_256x256_dark + README: configs/hand/2d_kpt_sview_rgb_img/topdown_heatmap/rhd2d/hrnetv2_dark_rhd2d.md Results: - Dataset: RHD Metrics: diff --git a/configs/hand/2d_kpt_sview_rgb_img/topdown_heatmap/rhd2d/hrnetv2_rhd2d.yml b/configs/hand/2d_kpt_sview_rgb_img/topdown_heatmap/rhd2d/hrnetv2_rhd2d.yml index e08fc69df6..cd706707c4 100644 --- a/configs/hand/2d_kpt_sview_rgb_img/topdown_heatmap/rhd2d/hrnetv2_rhd2d.yml +++ b/configs/hand/2d_kpt_sview_rgb_img/topdown_heatmap/rhd2d/hrnetv2_rhd2d.yml @@ -1,19 +1,17 @@ Collections: -- Metadata: - Architecture: - - HRNetv2 - Name: hand--2d_kpt_sview_rgb_img--topdown_heatmap--rhd2d--hrnetv2_rhd2d [HRNetv2@RHD] +- Name: HRNetv2 Paper: Title: Deep High-Resolution Representation Learning for Visual Recognition URL: https://ieeexplore.ieee.org/abstract/document/9052469/ - README: configs/hand/2d_kpt_sview_rgb_img/topdown_heatmap/rhd2d/hrnetv2_rhd2d.md Models: - Config: configs/hand/2d_kpt_sview_rgb_img/topdown_heatmap/rhd2d/hrnetv2_w18_rhd2d_256x256.py - In Collection: hand--2d_kpt_sview_rgb_img--topdown_heatmap--rhd2d--hrnetv2_rhd2d - [HRNetv2@RHD] + In Collection: HRNetv2 Metadata: + Architecture: + - HRNetv2 Training Data: RHD Name: topdown_heatmap_hrnetv2_w18_rhd2d_256x256 + README: configs/hand/2d_kpt_sview_rgb_img/topdown_heatmap/rhd2d/hrnetv2_rhd2d.md Results: - Dataset: RHD Metrics: diff --git a/configs/hand/2d_kpt_sview_rgb_img/topdown_heatmap/rhd2d/hrnetv2_udp_rhd2d.yml b/configs/hand/2d_kpt_sview_rgb_img/topdown_heatmap/rhd2d/hrnetv2_udp_rhd2d.yml index 695e9262d0..e728d0cff8 100644 --- a/configs/hand/2d_kpt_sview_rgb_img/topdown_heatmap/rhd2d/hrnetv2_udp_rhd2d.yml +++ b/configs/hand/2d_kpt_sview_rgb_img/topdown_heatmap/rhd2d/hrnetv2_udp_rhd2d.yml @@ -1,21 +1,19 @@ Collections: -- Metadata: - Architecture: - - HRNetv2 - - UDP - Name: hand--2d_kpt_sview_rgb_img--topdown_heatmap--rhd2d--hrnetv2_udp_rhd2d [HRNetv2+UDP@RHD] +- Name: UDP Paper: Title: 'The Devil Is in the Details: Delving Into Unbiased Data Processing for Human Pose Estimation' URL: http://openaccess.thecvf.com/content_CVPR_2020/html/Huang_The_Devil_Is_in_the_Details_Delving_Into_Unbiased_Data_CVPR_2020_paper.html - README: configs/hand/2d_kpt_sview_rgb_img/topdown_heatmap/rhd2d/hrnetv2_udp_rhd2d.md Models: - Config: configs/hand/2d_kpt_sview_rgb_img/topdown_heatmap/rhd2d/hrnetv2_w18_rhd2d_256x256_udp.py - In Collection: hand--2d_kpt_sview_rgb_img--topdown_heatmap--rhd2d--hrnetv2_udp_rhd2d - [HRNetv2+UDP@RHD] + In Collection: UDP Metadata: + Architecture: + - HRNetv2 + - UDP Training Data: RHD Name: topdown_heatmap_hrnetv2_w18_rhd2d_256x256_udp + README: configs/hand/2d_kpt_sview_rgb_img/topdown_heatmap/rhd2d/hrnetv2_udp_rhd2d.md Results: - Dataset: RHD Metrics: diff --git a/configs/hand/2d_kpt_sview_rgb_img/topdown_heatmap/rhd2d/mobilenetv2_rhd2d.yml b/configs/hand/2d_kpt_sview_rgb_img/topdown_heatmap/rhd2d/mobilenetv2_rhd2d.yml index 2de8186574..c68ede18a5 100644 --- a/configs/hand/2d_kpt_sview_rgb_img/topdown_heatmap/rhd2d/mobilenetv2_rhd2d.yml +++ b/configs/hand/2d_kpt_sview_rgb_img/topdown_heatmap/rhd2d/mobilenetv2_rhd2d.yml @@ -1,19 +1,17 @@ Collections: -- Metadata: - Architecture: - - MobilenetV2 - Name: hand--2d_kpt_sview_rgb_img--topdown_heatmap--rhd2d--mobilenetv2_rhd2d [MobilenetV2@RHD] +- Name: MobilenetV2 Paper: Title: 'Mobilenetv2: Inverted residuals and linear bottlenecks' URL: http://openaccess.thecvf.com/content_cvpr_2018/html/Sandler_MobileNetV2_Inverted_Residuals_CVPR_2018_paper.html - README: configs/hand/2d_kpt_sview_rgb_img/topdown_heatmap/rhd2d/mobilenetv2_rhd2d.md Models: - Config: configs/hand/2d_kpt_sview_rgb_img/topdown_heatmap/rhd2d/mobilenetv2_rhd2d_256x256.py - In Collection: hand--2d_kpt_sview_rgb_img--topdown_heatmap--rhd2d--mobilenetv2_rhd2d - [MobilenetV2@RHD] + In Collection: MobilenetV2 Metadata: + Architecture: + - MobilenetV2 Training Data: RHD Name: topdown_heatmap_mobilenetv2_rhd2d_256x256 + README: configs/hand/2d_kpt_sview_rgb_img/topdown_heatmap/rhd2d/mobilenetv2_rhd2d.md Results: - Dataset: RHD Metrics: diff --git a/configs/hand/2d_kpt_sview_rgb_img/topdown_heatmap/rhd2d/resnet_rhd2d.yml b/configs/hand/2d_kpt_sview_rgb_img/topdown_heatmap/rhd2d/resnet_rhd2d.yml index b17688b743..ffbc397cf5 100644 --- a/configs/hand/2d_kpt_sview_rgb_img/topdown_heatmap/rhd2d/resnet_rhd2d.yml +++ b/configs/hand/2d_kpt_sview_rgb_img/topdown_heatmap/rhd2d/resnet_rhd2d.yml @@ -1,20 +1,18 @@ Collections: -- Metadata: - Architecture: - - SimpleBaseline2D - - ResNet - Name: hand--2d_kpt_sview_rgb_img--topdown_heatmap--rhd2d--resnet_rhd2d [SimpleBaseline2D+ResNet@RHD] +- Name: SimpleBaseline2D Paper: Title: Simple baselines for human pose estimation and tracking URL: http://openaccess.thecvf.com/content_ECCV_2018/html/Bin_Xiao_Simple_Baselines_for_ECCV_2018_paper.html - README: configs/hand/2d_kpt_sview_rgb_img/topdown_heatmap/rhd2d/resnet_rhd2d.md Models: - Config: configs/hand/2d_kpt_sview_rgb_img/topdown_heatmap/rhd2d/res50_rhd2d_256x256.py - In Collection: hand--2d_kpt_sview_rgb_img--topdown_heatmap--rhd2d--resnet_rhd2d - [SimpleBaseline2D+ResNet@RHD] + In Collection: SimpleBaseline2D Metadata: + Architecture: + - SimpleBaseline2D + - ResNet Training Data: RHD Name: topdown_heatmap_res50_rhd2d_256x256 + README: configs/hand/2d_kpt_sview_rgb_img/topdown_heatmap/rhd2d/resnet_rhd2d.md Results: - Dataset: RHD Metrics: diff --git a/configs/hand/3d_kpt_sview_rgb_img/internet/interhand3d/internet_interhand3d.yml b/configs/hand/3d_kpt_sview_rgb_img/internet/interhand3d/internet_interhand3d.yml index 89ad25801d..44a118c697 100644 --- a/configs/hand/3d_kpt_sview_rgb_img/internet/interhand3d/internet_interhand3d.yml +++ b/configs/hand/3d_kpt_sview_rgb_img/internet/interhand3d/internet_interhand3d.yml @@ -1,21 +1,19 @@ Collections: -- Metadata: - Architecture: - - InterNet - - ResNet - Name: hand--3d_kpt_sview_rgb_img--internet--interhand3d--internet_interhand3d [InterNet+ResNet@InterHand2.6M] +- Name: InterNet Paper: Title: 'InterHand2.6M: A Dataset and Baseline for 3D Interacting Hand Pose Estimation from a Single RGB Image' URL: https://link.springer.com/content/pdf/10.1007/978-3-030-58565-5_33.pdf - README: configs/hand/3d_kpt_sview_rgb_img/internet/interhand3d/internet_interhand3d.md Models: - Config: configs/hand/3d_kpt_sview_rgb_img/internet/interhand3d/res50_interhand3d_all_256x256.py - In Collection: hand--3d_kpt_sview_rgb_img--internet--interhand3d--internet_interhand3d - [InterNet+ResNet@InterHand2.6M] + In Collection: InterNet Metadata: + Architecture: &id001 + - InterNet + - ResNet Training Data: InterHand2.6M Name: internet_res50_interhand3d_all_256x256 + README: configs/hand/3d_kpt_sview_rgb_img/internet/interhand3d/internet_interhand3d.md Results: - Dataset: InterHand2.6M Metrics: @@ -26,11 +24,12 @@ Models: Task: Hand 3D Keypoint Weights: https://download.openmmlab.com/mmpose/hand3d/internet/res50_intehand3dv1.0_all_256x256-42b7f2ac_20210702.pth - Config: configs/hand/3d_kpt_sview_rgb_img/internet/interhand3d/res50_interhand3d_all_256x256.py - In Collection: hand--3d_kpt_sview_rgb_img--internet--interhand3d--internet_interhand3d - [InterNet+ResNet@InterHand2.6M] + In Collection: InterNet Metadata: + Architecture: *id001 Training Data: InterHand2.6M Name: internet_res50_interhand3d_all_256x256 + README: configs/hand/3d_kpt_sview_rgb_img/internet/interhand3d/internet_interhand3d.md Results: - Dataset: InterHand2.6M Metrics: diff --git a/configs/wholebody/2d_kpt_sview_rgb_img/associative_embedding/coco-wholebody/higherhrnet_coco-wholebody.yml b/configs/wholebody/2d_kpt_sview_rgb_img/associative_embedding/coco-wholebody/higherhrnet_coco-wholebody.yml index f01e50f017..4fd6712341 100644 --- a/configs/wholebody/2d_kpt_sview_rgb_img/associative_embedding/coco-wholebody/higherhrnet_coco-wholebody.yml +++ b/configs/wholebody/2d_kpt_sview_rgb_img/associative_embedding/coco-wholebody/higherhrnet_coco-wholebody.yml @@ -1,22 +1,19 @@ Collections: -- Metadata: - Architecture: - - Associative Embedding - - HigherHRNet - Name: wholebody--2d_kpt_sview_rgb_img--associative_embedding--coco-wholebody--higherhrnet_coco-wholebody - [Associative Embedding+HigherHRNet@COCO-WholeBody] +- Name: HigherHRNet Paper: Title: 'HigherHRNet: Scale-Aware Representation Learning for Bottom-Up Human Pose Estimation' URL: http://openaccess.thecvf.com/content_CVPR_2020/html/Cheng_HigherHRNet_Scale-Aware_Representation_Learning_for_Bottom-Up_Human_Pose_Estimation_CVPR_2020_paper.html - README: configs/wholebody/2d_kpt_sview_rgb_img/associative_embedding/coco-wholebody/higherhrnet_coco-wholebody.md Models: - Config: configs/wholebody/2d_kpt_sview_rgb_img/associative_embedding/coco-wholebody/higherhrnet_w32_coco_wholebody_512x512.py - In Collection: wholebody--2d_kpt_sview_rgb_img--associative_embedding--coco-wholebody--higherhrnet_coco-wholebody - [Associative Embedding+HigherHRNet@COCO-WholeBody] + In Collection: HigherHRNet Metadata: + Architecture: &id001 + - Associative Embedding + - HigherHRNet Training Data: COCO-WholeBody Name: associative_embedding_higherhrnet_w32_coco_wholebody_512x512 + README: configs/wholebody/2d_kpt_sview_rgb_img/associative_embedding/coco-wholebody/higherhrnet_coco-wholebody.md Results: - Dataset: COCO-WholeBody Metrics: @@ -33,11 +30,12 @@ Models: Task: Wholebody 2D Keypoint Weights: https://download.openmmlab.com/mmpose/bottom_up/higher_hrnet32_coco_wholebody_512x512_plus-2fa137ab_20210517.pth - Config: configs/wholebody/2d_kpt_sview_rgb_img/associative_embedding/coco-wholebody/higherhrnet_w48_coco_wholebody_512x512.py - In Collection: wholebody--2d_kpt_sview_rgb_img--associative_embedding--coco-wholebody--higherhrnet_coco-wholebody - [Associative Embedding+HigherHRNet@COCO-WholeBody] + In Collection: HigherHRNet Metadata: + Architecture: *id001 Training Data: COCO-WholeBody Name: associative_embedding_higherhrnet_w48_coco_wholebody_512x512 + README: configs/wholebody/2d_kpt_sview_rgb_img/associative_embedding/coco-wholebody/higherhrnet_coco-wholebody.md Results: - Dataset: COCO-WholeBody Metrics: diff --git a/configs/wholebody/2d_kpt_sview_rgb_img/associative_embedding/coco-wholebody/hrnet_coco-wholebody.yml b/configs/wholebody/2d_kpt_sview_rgb_img/associative_embedding/coco-wholebody/hrnet_coco-wholebody.yml index 3ee2d6093a..c0344b1074 100644 --- a/configs/wholebody/2d_kpt_sview_rgb_img/associative_embedding/coco-wholebody/hrnet_coco-wholebody.yml +++ b/configs/wholebody/2d_kpt_sview_rgb_img/associative_embedding/coco-wholebody/hrnet_coco-wholebody.yml @@ -1,21 +1,18 @@ Collections: -- Metadata: - Architecture: - - Associative Embedding - - HRNet - Name: wholebody--2d_kpt_sview_rgb_img--associative_embedding--coco-wholebody--hrnet_coco-wholebody - [Associative Embedding+HRNet@COCO-WholeBody] +- Name: HRNet Paper: Title: Deep high-resolution representation learning for human pose estimation URL: http://openaccess.thecvf.com/content_CVPR_2019/html/Sun_Deep_High-Resolution_Representation_Learning_for_Human_Pose_Estimation_CVPR_2019_paper.html - README: configs/wholebody/2d_kpt_sview_rgb_img/associative_embedding/coco-wholebody/hrnet_coco-wholebody.md Models: - Config: configs/wholebody/2d_kpt_sview_rgb_img/associative_embedding/coco-wholebody/hrnet_w32_coco_wholebody_512x512.py - In Collection: wholebody--2d_kpt_sview_rgb_img--associative_embedding--coco-wholebody--hrnet_coco-wholebody - [Associative Embedding+HRNet@COCO-WholeBody] + In Collection: HRNet Metadata: + Architecture: &id001 + - Associative Embedding + - HRNet Training Data: COCO-WholeBody Name: associative_embedding_hrnet_w32_coco_wholebody_512x512 + README: configs/wholebody/2d_kpt_sview_rgb_img/associative_embedding/coco-wholebody/hrnet_coco-wholebody.md Results: - Dataset: COCO-WholeBody Metrics: @@ -32,11 +29,12 @@ Models: Task: Wholebody 2D Keypoint Weights: https://download.openmmlab.com/mmpose/bottom_up/hrnet_w32_coco_wholebody_512x512_plus-f1f1185c_20210517.pth - Config: configs/wholebody/2d_kpt_sview_rgb_img/associative_embedding/coco-wholebody/hrnet_w48_coco_wholebody_512x512.py - In Collection: wholebody--2d_kpt_sview_rgb_img--associative_embedding--coco-wholebody--hrnet_coco-wholebody - [Associative Embedding+HRNet@COCO-WholeBody] + In Collection: HRNet Metadata: + Architecture: *id001 Training Data: COCO-WholeBody Name: associative_embedding_hrnet_w48_coco_wholebody_512x512 + README: configs/wholebody/2d_kpt_sview_rgb_img/associative_embedding/coco-wholebody/hrnet_coco-wholebody.md Results: - Dataset: COCO-WholeBody Metrics: diff --git a/configs/wholebody/2d_kpt_sview_rgb_img/topdown_heatmap/coco-wholebody/hrnet_coco-wholebody.yml b/configs/wholebody/2d_kpt_sview_rgb_img/topdown_heatmap/coco-wholebody/hrnet_coco-wholebody.yml index e30362264f..10ab02916c 100644 --- a/configs/wholebody/2d_kpt_sview_rgb_img/topdown_heatmap/coco-wholebody/hrnet_coco-wholebody.yml +++ b/configs/wholebody/2d_kpt_sview_rgb_img/topdown_heatmap/coco-wholebody/hrnet_coco-wholebody.yml @@ -1,20 +1,17 @@ Collections: -- Metadata: - Architecture: - - HRNet - Name: wholebody--2d_kpt_sview_rgb_img--topdown_heatmap--coco-wholebody--hrnet_coco-wholebody - [HRNet@COCO-WholeBody] +- Name: HRNet Paper: Title: Deep high-resolution representation learning for human pose estimation URL: http://openaccess.thecvf.com/content_CVPR_2019/html/Sun_Deep_High-Resolution_Representation_Learning_for_Human_Pose_Estimation_CVPR_2019_paper.html - README: configs/wholebody/2d_kpt_sview_rgb_img/topdown_heatmap/coco-wholebody/hrnet_coco-wholebody.md Models: - Config: configs/wholebody/2d_kpt_sview_rgb_img/topdown_heatmap/coco-wholebody/hrnet_w32_coco_wholebody_256x192.py - In Collection: wholebody--2d_kpt_sview_rgb_img--topdown_heatmap--coco-wholebody--hrnet_coco-wholebody - [HRNet@COCO-WholeBody] + In Collection: HRNet Metadata: + Architecture: &id001 + - HRNet Training Data: COCO-WholeBody Name: topdown_heatmap_hrnet_w32_coco_wholebody_256x192 + README: configs/wholebody/2d_kpt_sview_rgb_img/topdown_heatmap/coco-wholebody/hrnet_coco-wholebody.md Results: - Dataset: COCO-WholeBody Metrics: @@ -31,11 +28,12 @@ Models: Task: Wholebody 2D Keypoint Weights: https://download.openmmlab.com/mmpose/top_down/hrnet/hrnet_w32_coco_wholebody_256x192-853765cd_20200918.pth - Config: configs/wholebody/2d_kpt_sview_rgb_img/topdown_heatmap/coco-wholebody/hrnet_w32_coco_wholebody_384x288.py - In Collection: wholebody--2d_kpt_sview_rgb_img--topdown_heatmap--coco-wholebody--hrnet_coco-wholebody - [HRNet@COCO-WholeBody] + In Collection: HRNet Metadata: + Architecture: *id001 Training Data: COCO-WholeBody Name: topdown_heatmap_hrnet_w32_coco_wholebody_384x288 + README: configs/wholebody/2d_kpt_sview_rgb_img/topdown_heatmap/coco-wholebody/hrnet_coco-wholebody.md Results: - Dataset: COCO-WholeBody Metrics: @@ -52,11 +50,12 @@ Models: Task: Wholebody 2D Keypoint Weights: https://download.openmmlab.com/mmpose/top_down/hrnet/hrnet_w32_coco_wholebody_384x288-78cacac3_20200922.pth - Config: configs/wholebody/2d_kpt_sview_rgb_img/topdown_heatmap/coco-wholebody/hrnet_w48_coco_wholebody_256x192.py - In Collection: wholebody--2d_kpt_sview_rgb_img--topdown_heatmap--coco-wholebody--hrnet_coco-wholebody - [HRNet@COCO-WholeBody] + In Collection: HRNet Metadata: + Architecture: *id001 Training Data: COCO-WholeBody Name: topdown_heatmap_hrnet_w48_coco_wholebody_256x192 + README: configs/wholebody/2d_kpt_sview_rgb_img/topdown_heatmap/coco-wholebody/hrnet_coco-wholebody.md Results: - Dataset: COCO-WholeBody Metrics: @@ -73,11 +72,12 @@ Models: Task: Wholebody 2D Keypoint Weights: https://download.openmmlab.com/mmpose/top_down/hrnet/hrnet_w48_coco_wholebody_256x192-643e18cb_20200922.pth - Config: configs/wholebody/2d_kpt_sview_rgb_img/topdown_heatmap/coco-wholebody/hrnet_w48_coco_wholebody_384x288.py - In Collection: wholebody--2d_kpt_sview_rgb_img--topdown_heatmap--coco-wholebody--hrnet_coco-wholebody - [HRNet@COCO-WholeBody] + In Collection: HRNet Metadata: + Architecture: *id001 Training Data: COCO-WholeBody Name: topdown_heatmap_hrnet_w48_coco_wholebody_384x288 + README: configs/wholebody/2d_kpt_sview_rgb_img/topdown_heatmap/coco-wholebody/hrnet_coco-wholebody.md Results: - Dataset: COCO-WholeBody Metrics: diff --git a/configs/wholebody/2d_kpt_sview_rgb_img/topdown_heatmap/coco-wholebody/hrnet_dark_coco-wholebody.yml b/configs/wholebody/2d_kpt_sview_rgb_img/topdown_heatmap/coco-wholebody/hrnet_dark_coco-wholebody.yml index 703c9f8669..543c51fcc9 100644 --- a/configs/wholebody/2d_kpt_sview_rgb_img/topdown_heatmap/coco-wholebody/hrnet_dark_coco-wholebody.yml +++ b/configs/wholebody/2d_kpt_sview_rgb_img/topdown_heatmap/coco-wholebody/hrnet_dark_coco-wholebody.yml @@ -1,21 +1,18 @@ Collections: -- Metadata: - Architecture: - - HRNet - - DarkPose - Name: wholebody--2d_kpt_sview_rgb_img--topdown_heatmap--coco-wholebody--hrnet_dark_coco-wholebody - [HRNet+DarkPose@COCO-WholeBody] +- Name: DarkPose Paper: Title: Distribution-aware coordinate representation for human pose estimation URL: http://openaccess.thecvf.com/content_CVPR_2020/html/Zhang_Distribution-Aware_Coordinate_Representation_for_Human_Pose_Estimation_CVPR_2020_paper.html - README: configs/wholebody/2d_kpt_sview_rgb_img/topdown_heatmap/coco-wholebody/hrnet_dark_coco-wholebody.md Models: - Config: configs/wholebody/2d_kpt_sview_rgb_img/topdown_heatmap/coco-wholebody/hrnet_w32_coco_wholebody_256x192_dark.py - In Collection: wholebody--2d_kpt_sview_rgb_img--topdown_heatmap--coco-wholebody--hrnet_dark_coco-wholebody - [HRNet+DarkPose@COCO-WholeBody] + In Collection: DarkPose Metadata: + Architecture: &id001 + - HRNet + - DarkPose Training Data: COCO-WholeBody Name: topdown_heatmap_hrnet_w32_coco_wholebody_256x192_dark + README: configs/wholebody/2d_kpt_sview_rgb_img/topdown_heatmap/coco-wholebody/hrnet_dark_coco-wholebody.md Results: - Dataset: COCO-WholeBody Metrics: @@ -32,11 +29,12 @@ Models: Task: Wholebody 2D Keypoint Weights: https://download.openmmlab.com/mmpose/top_down/hrnet/hrnet_w32_coco_wholebody_256x192_dark-469327ef_20200922.pth - Config: configs/wholebody/2d_kpt_sview_rgb_img/topdown_heatmap/coco-wholebody/hrnet_w48_coco_wholebody_384x288_dark_plus.py - In Collection: wholebody--2d_kpt_sview_rgb_img--topdown_heatmap--coco-wholebody--hrnet_dark_coco-wholebody - [HRNet+DarkPose@COCO-WholeBody] + In Collection: DarkPose Metadata: + Architecture: *id001 Training Data: COCO-WholeBody Name: topdown_heatmap_hrnet_w48_coco_wholebody_384x288_dark_plus + README: configs/wholebody/2d_kpt_sview_rgb_img/topdown_heatmap/coco-wholebody/hrnet_dark_coco-wholebody.md Results: - Dataset: COCO-WholeBody Metrics: diff --git a/configs/wholebody/2d_kpt_sview_rgb_img/topdown_heatmap/coco-wholebody/resnet_coco-wholebody.yml b/configs/wholebody/2d_kpt_sview_rgb_img/topdown_heatmap/coco-wholebody/resnet_coco-wholebody.yml index 4549d6f08e..1dbf5d28df 100644 --- a/configs/wholebody/2d_kpt_sview_rgb_img/topdown_heatmap/coco-wholebody/resnet_coco-wholebody.yml +++ b/configs/wholebody/2d_kpt_sview_rgb_img/topdown_heatmap/coco-wholebody/resnet_coco-wholebody.yml @@ -1,20 +1,17 @@ Collections: -- Metadata: - Architecture: - - SimpleBaseline2D - Name: wholebody--2d_kpt_sview_rgb_img--topdown_heatmap--coco-wholebody--resnet_coco-wholebody - [SimpleBaseline2D@COCO-WholeBody] +- Name: SimpleBaseline2D Paper: Title: Simple baselines for human pose estimation and tracking URL: http://openaccess.thecvf.com/content_ECCV_2018/html/Bin_Xiao_Simple_Baselines_for_ECCV_2018_paper.html - README: configs/wholebody/2d_kpt_sview_rgb_img/topdown_heatmap/coco-wholebody/resnet_coco-wholebody.md Models: - Config: configs/wholebody/2d_kpt_sview_rgb_img/topdown_heatmap/coco-wholebody/res50_coco_wholebody_256x192.py - In Collection: wholebody--2d_kpt_sview_rgb_img--topdown_heatmap--coco-wholebody--resnet_coco-wholebody - [SimpleBaseline2D@COCO-WholeBody] + In Collection: SimpleBaseline2D Metadata: + Architecture: &id001 + - SimpleBaseline2D Training Data: COCO-WholeBody Name: topdown_heatmap_res50_coco_wholebody_256x192 + README: configs/wholebody/2d_kpt_sview_rgb_img/topdown_heatmap/coco-wholebody/resnet_coco-wholebody.md Results: - Dataset: COCO-WholeBody Metrics: @@ -31,11 +28,12 @@ Models: Task: Wholebody 2D Keypoint Weights: https://download.openmmlab.com/mmpose/top_down/resnet/res50_coco_wholebody_256x192-9e37ed88_20201004.pth - Config: configs/wholebody/2d_kpt_sview_rgb_img/topdown_heatmap/coco-wholebody/res50_coco_wholebody_384x288.py - In Collection: wholebody--2d_kpt_sview_rgb_img--topdown_heatmap--coco-wholebody--resnet_coco-wholebody - [SimpleBaseline2D@COCO-WholeBody] + In Collection: SimpleBaseline2D Metadata: + Architecture: *id001 Training Data: COCO-WholeBody Name: topdown_heatmap_res50_coco_wholebody_384x288 + README: configs/wholebody/2d_kpt_sview_rgb_img/topdown_heatmap/coco-wholebody/resnet_coco-wholebody.md Results: - Dataset: COCO-WholeBody Metrics: @@ -52,11 +50,12 @@ Models: Task: Wholebody 2D Keypoint Weights: https://download.openmmlab.com/mmpose/top_down/resnet/res50_coco_wholebody_384x288-ce11e294_20201004.pth - Config: configs/wholebody/2d_kpt_sview_rgb_img/topdown_heatmap/coco-wholebody/res101_coco_wholebody_256x192.py - In Collection: wholebody--2d_kpt_sview_rgb_img--topdown_heatmap--coco-wholebody--resnet_coco-wholebody - [SimpleBaseline2D@COCO-WholeBody] + In Collection: SimpleBaseline2D Metadata: + Architecture: *id001 Training Data: COCO-WholeBody Name: topdown_heatmap_res101_coco_wholebody_256x192 + README: configs/wholebody/2d_kpt_sview_rgb_img/topdown_heatmap/coco-wholebody/resnet_coco-wholebody.md Results: - Dataset: COCO-WholeBody Metrics: @@ -73,11 +72,12 @@ Models: Task: Wholebody 2D Keypoint Weights: https://download.openmmlab.com/mmpose/top_down/resnet/res101_coco_wholebody_256x192-7325f982_20201004.pth - Config: configs/wholebody/2d_kpt_sview_rgb_img/topdown_heatmap/coco-wholebody/res101_coco_wholebody_384x288.py - In Collection: wholebody--2d_kpt_sview_rgb_img--topdown_heatmap--coco-wholebody--resnet_coco-wholebody - [SimpleBaseline2D@COCO-WholeBody] + In Collection: SimpleBaseline2D Metadata: + Architecture: *id001 Training Data: COCO-WholeBody Name: topdown_heatmap_res101_coco_wholebody_384x288 + README: configs/wholebody/2d_kpt_sview_rgb_img/topdown_heatmap/coco-wholebody/resnet_coco-wholebody.md Results: - Dataset: COCO-WholeBody Metrics: @@ -94,11 +94,12 @@ Models: Task: Wholebody 2D Keypoint Weights: https://download.openmmlab.com/mmpose/top_down/resnet/res101_coco_wholebody_384x288-6c137b9a_20201004.pth - Config: configs/wholebody/2d_kpt_sview_rgb_img/topdown_heatmap/coco-wholebody/res152_coco_wholebody_256x192.py - In Collection: wholebody--2d_kpt_sview_rgb_img--topdown_heatmap--coco-wholebody--resnet_coco-wholebody - [SimpleBaseline2D@COCO-WholeBody] + In Collection: SimpleBaseline2D Metadata: + Architecture: *id001 Training Data: COCO-WholeBody Name: topdown_heatmap_res152_coco_wholebody_256x192 + README: configs/wholebody/2d_kpt_sview_rgb_img/topdown_heatmap/coco-wholebody/resnet_coco-wholebody.md Results: - Dataset: COCO-WholeBody Metrics: @@ -115,11 +116,12 @@ Models: Task: Wholebody 2D Keypoint Weights: https://download.openmmlab.com/mmpose/top_down/resnet/res152_coco_wholebody_256x192-5de8ae23_20201004.pth - Config: configs/wholebody/2d_kpt_sview_rgb_img/topdown_heatmap/coco-wholebody/res152_coco_wholebody_384x288.py - In Collection: wholebody--2d_kpt_sview_rgb_img--topdown_heatmap--coco-wholebody--resnet_coco-wholebody - [SimpleBaseline2D@COCO-WholeBody] + In Collection: SimpleBaseline2D Metadata: + Architecture: *id001 Training Data: COCO-WholeBody Name: topdown_heatmap_res152_coco_wholebody_384x288 + README: configs/wholebody/2d_kpt_sview_rgb_img/topdown_heatmap/coco-wholebody/resnet_coco-wholebody.md Results: - Dataset: COCO-WholeBody Metrics: diff --git a/configs/wholebody/2d_kpt_sview_rgb_img/topdown_heatmap/halpe/hrnet_dark_halpe.yml b/configs/wholebody/2d_kpt_sview_rgb_img/topdown_heatmap/halpe/hrnet_dark_halpe.yml index 3807f1ef7a..2664b3837e 100644 --- a/configs/wholebody/2d_kpt_sview_rgb_img/topdown_heatmap/halpe/hrnet_dark_halpe.yml +++ b/configs/wholebody/2d_kpt_sview_rgb_img/topdown_heatmap/halpe/hrnet_dark_halpe.yml @@ -1,21 +1,18 @@ Collections: -- Metadata: - Architecture: - - HRNet - - DarkPose - Name: wholebody--2d_kpt_sview_rgb_img--topdown_heatmap--halpe--hrnet_dark_halpe - [HRNet+DarkPose@Halpe] +- Name: DarkPose Paper: Title: Distribution-aware coordinate representation for human pose estimation URL: http://openaccess.thecvf.com/content_CVPR_2020/html/Zhang_Distribution-Aware_Coordinate_Representation_for_Human_Pose_Estimation_CVPR_2020_paper.html - README: configs/wholebody/2d_kpt_sview_rgb_img/topdown_heatmap/halpe/hrnet_dark_halpe.md Models: - Config: configs/wholebody/2d_kpt_sview_rgb_img/topdown_heatmap/halpe/hrnet_w48_halpe_384x288_dark_plus.py - In Collection: wholebody--2d_kpt_sview_rgb_img--topdown_heatmap--halpe--hrnet_dark_halpe - [HRNet+DarkPose@Halpe] + In Collection: DarkPose Metadata: + Architecture: + - HRNet + - DarkPose Training Data: Halpe Name: topdown_heatmap_hrnet_w48_halpe_384x288_dark_plus + README: configs/wholebody/2d_kpt_sview_rgb_img/topdown_heatmap/halpe/hrnet_dark_halpe.md Results: - Dataset: Halpe Metrics: