Skip to content

Commit

Permalink
Apply suggestions from code review
Browse files Browse the repository at this point in the history
Co-authored-by: Tau <[email protected]>
  • Loading branch information
Ben-Louis and Tau-J authored Mar 10, 2023
1 parent 9866ddb commit cf5e82f
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions docs/en/advanced_guides/mixed_datasets.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ In this scenario, no data conversion is required for the elements from the COCO

```python
dataset_coco = dict(
type='COCODataset',
type='CocoDataset',
data_root='data/coco/',
ann_file='annotations/person_keypoints_train2017.json',
data_prefix=dict(img='train2017/'),
Expand Down Expand Up @@ -99,7 +99,7 @@ In this scenario, both COCO and AIC datasets need to adjust the keypoint indices

```python
dataset_coco = dict(
type='COCODataset',
type='CocoDataset',
data_root='data/coco/',
ann_file='annotations/person_keypoints_train2017.json',
data_prefix=dict(img='train2017/'),
Expand Down
4 changes: 2 additions & 2 deletions docs/zh_cn/advanced_guides/mixed_datasets.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ COCO 和 AIC 都是 2D 人体姿态数据集。但是,这两个数据集在关

```python
dataset_coco = dict(
type='COCODataset',
type='CocoDataset',
data_root='data/coco/',
ann_file='annotations/person_keypoints_train2017.json',
data_prefix=dict(img='train2017/'),
Expand Down Expand Up @@ -99,7 +99,7 @@ MMPose 提供了一份完整的 [配置文件](https://github.com/open-mmlab/mmp

```python
dataset_coco = dict(
type='COCODataset',
type='CocoDataset',
data_root='data/coco/',
ann_file='annotations/person_keypoints_train2017.json',
data_prefix=dict(img='train2017/'),
Expand Down

0 comments on commit cf5e82f

Please sign in to comment.