-
Notifications
You must be signed in to change notification settings - Fork 322
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[RFC] Add missing names to
pl_bolts/datasets/__init__.py
(#493)
* Add missing names to __init__.py * Apply isort * Apply new importing to datamodules * Apply new importing * Add missing names to __init__.py * Apply isort * Apply new importing to datamodules * Apply new importing * num_workers * isort Co-authored-by: Jirka Borovec <[email protected]>
- Loading branch information
1 parent
6b2136b
commit f8affe9
Showing
10 changed files
with
31 additions
and
14 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
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,15 +1,33 @@ | ||
from pl_bolts.datasets.base_dataset import LightDataset | ||
from pl_bolts.datasets.cifar10_dataset import CIFAR10, TrialCIFAR10 | ||
from pl_bolts.datasets.concat_dataset import ConcatDataset | ||
from pl_bolts.datasets.dummy_dataset import ( | ||
DummyDataset, | ||
DummyDetectionDataset, | ||
RandomDataset, | ||
RandomDictDataset, | ||
RandomDictStringDataset, | ||
) | ||
from pl_bolts.datasets.imagenet_dataset import extract_archive, parse_devkit_archive, UnlabeledImagenet | ||
from pl_bolts.datasets.kitti_dataset import KittiDataset | ||
from pl_bolts.datasets.mnist_dataset import BinaryMNIST | ||
from pl_bolts.datasets.ssl_amdim_datasets import CIFAR10Mixed, SSLDatasetMixin | ||
|
||
__all__ = [ | ||
"RandomDictStringDataset", | ||
"RandomDictDataset", | ||
"RandomDataset", | ||
"LightDataset", | ||
"CIFAR10", | ||
"TrialCIFAR10", | ||
"ConcatDataset", | ||
"DummyDataset", | ||
"DummyDetectionDataset", | ||
"RandomDataset", | ||
"RandomDictDataset", | ||
"RandomDictStringDataset", | ||
"extract_archive", | ||
"parse_devkit_archive", | ||
"UnlabeledImagenet", | ||
"KittiDataset", | ||
"BinaryMNIST", | ||
"CIFAR10Mixed", | ||
"SSLDatasetMixin", | ||
] |
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