Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Fix] Move ubody3d dataset to wholebody3d #2712

Merged
merged 2 commits into from
Sep 20, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions mmpose/datasets/datasets/__init__.py
Original file line number Diff line number Diff line change
@@ -7,3 +7,4 @@
from .fashion import * # noqa: F401, F403
from .hand import * # noqa: F401, F403
from .wholebody import * # noqa: F401, F403
from .wholebody3d import * # noqa: F401, F403
3 changes: 1 addition & 2 deletions mmpose/datasets/datasets/body3d/__init__.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
# Copyright (c) OpenMMLab. All rights reserved.
from .h36m_dataset import Human36mDataset
from .ubody3d_dataset import UBody3dDataset

__all__ = ['Human36mDataset', 'UBody3dDataset']
__all__ = ['Human36mDataset']
4 changes: 4 additions & 0 deletions mmpose/datasets/datasets/wholebody3d/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
# Copyright (c) OpenMMLab. All rights reserved.
from .ubody3d_dataset import UBody3dDataset

__all__ = ['UBody3dDataset']
Original file line number Diff line number Diff line change
@@ -3,7 +3,7 @@

import numpy as np

from mmpose.datasets.datasets.body3d import UBody3dDataset
from mmpose.datasets.datasets.wholebody3d import UBody3dDataset


class TestUBody3dDataset(TestCase):