forked from open-mmlab/mmpose
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
change name to mpii_trb (open-mmlab#48)
- Loading branch information
Showing
7 changed files
with
63 additions
and
40 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,12 @@ | ||
from .builder import build_dataloader, build_dataset | ||
from .datasets import (BottomUpCocoDataset, TopDownCocoDataset, | ||
TopDownTRBMPIDataset) | ||
TopDownMpiiTrbDataset) | ||
from .pipelines import Compose | ||
from .registry import DATASETS, PIPELINES | ||
from .samplers import DistributedSampler | ||
|
||
__all__ = [ | ||
'TopDownCocoDataset', 'BottomUpCocoDataset', 'TopDownTRBMPIDataset', | ||
'TopDownCocoDataset', 'BottomUpCocoDataset', 'TopDownMpiiTrbDataset', | ||
'build_dataloader', 'build_dataset', 'Compose', 'DistributedSampler', | ||
'DATASETS', 'PIPELINES' | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,6 @@ | ||
from .bottom_up import BottomUpCocoDataset | ||
from .top_down import TopDownCocoDataset, TopDownTRBMPIDataset | ||
from .top_down import TopDownCocoDataset, TopDownMpiiTrbDataset | ||
|
||
__all__ = ['TopDownCocoDataset', 'BottomUpCocoDataset', 'TopDownTRBMPIDataset'] | ||
__all__ = [ | ||
'TopDownCocoDataset', 'BottomUpCocoDataset', 'TopDownMpiiTrbDataset' | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
from .topdown_coco_dataset import TopDownCocoDataset | ||
from .topdown_trbmpi_dataset import TopDownTRBMPIDataset | ||
from .topdown_mpii_trb_dataset import TopDownMpiiTrbDataset | ||
|
||
__all__ = ['TopDownCocoDataset', 'TopDownTRBMPIDataset'] | ||
__all__ = ['TopDownCocoDataset', 'TopDownMpiiTrbDataset'] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters