-
Notifications
You must be signed in to change notification settings - Fork 323
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
9 changed files
with
100 additions
and
36 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,29 +1,98 @@ | ||
from pl_bolts.datamodules.async_dataloader import AsynchronousLoader | ||
|
||
__all__ = [] | ||
|
||
try: | ||
from pl_bolts.datamodules.binary_mnist_datamodule import BinaryMNISTDataModule | ||
except ModuleNotFoundError: | ||
pass | ||
else: | ||
__all__ += ['BinaryMNISTDataModule'] | ||
|
||
try: | ||
from pl_bolts.datamodules.cifar10_datamodule import ( | ||
CIFAR10DataModule, | ||
TinyCIFAR10DataModule, | ||
) | ||
except ModuleNotFoundError: | ||
pass | ||
else: | ||
__all__ += ['CIFAR10DataModule', 'TinyCIFAR10DataModule'] | ||
|
||
try: | ||
from pl_bolts.datamodules.experience_source import ( | ||
ExperienceSourceDataset, | ||
ExperienceSource, | ||
DiscountedExperienceSource, | ||
) | ||
except ModuleNotFoundError: | ||
pass | ||
else: | ||
__all__ += ['ExperienceSourceDataset', 'ExperienceSource', 'DiscountedExperienceSource'] | ||
|
||
try: | ||
from pl_bolts.datamodules.fashion_mnist_datamodule import FashionMNISTDataModule | ||
except ModuleNotFoundError: | ||
pass | ||
else: | ||
__all__ += ['FashionMNISTDataModule'] | ||
|
||
try: | ||
from pl_bolts.datamodules.imagenet_datamodule import ImagenetDataModule | ||
except ModuleNotFoundError: | ||
pass | ||
else: | ||
__all__ += ['ImagenetDataModule'] | ||
|
||
try: | ||
from pl_bolts.datamodules.mnist_datamodule import MNISTDataModule | ||
except ModuleNotFoundError: | ||
pass | ||
else: | ||
__all__ += ['MNISTDataModule'] | ||
|
||
try: | ||
from pl_bolts.datamodules.sklearn_datamodule import ( | ||
SklearnDataset, | ||
SklearnDataModule, | ||
TensorDataset, | ||
) | ||
except ModuleNotFoundError: | ||
pass | ||
else: | ||
__all__ += ['SklearnDataset', 'SklearnDataModule', 'TensorDataset'] | ||
|
||
try: | ||
from pl_bolts.datamodules.ssl_imagenet_datamodule import SSLImagenetDataModule | ||
except ModuleNotFoundError: | ||
pass | ||
else: | ||
__all__ += ['SSLImagenetDataModule'] | ||
|
||
try: | ||
from pl_bolts.datamodules.stl10_datamodule import STL10DataModule | ||
except ModuleNotFoundError: | ||
pass | ||
else: | ||
__all__ += ['STL10DataModule'] | ||
|
||
try: | ||
from pl_bolts.datamodules.vocdetection_datamodule import VOCDetectionDataModule | ||
except ModuleNotFoundError: | ||
pass | ||
else: | ||
__all__ += ['VOCDetectionDataModule'] | ||
|
||
try: | ||
from pl_bolts.datasets.kitti_dataset import KittiDataset | ||
except ModuleNotFoundError: | ||
pass | ||
else: | ||
__all__ += ['KittiDataset'] | ||
|
||
try: | ||
from pl_bolts.datamodules.kitti_datamodule import KittiDataModule | ||
except ModuleNotFoundError: | ||
pass | ||
else: | ||
__all__ += ['KittiDataModule'] |
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,3 +1,3 @@ | ||
from pl_bolts.models.vision.pixel_cnn import PixelCNN | ||
from pl_bolts.models.vision.unet import UNet | ||
from pl_bolts.models.vision.segmentation import SemSegment | ||
from pl_bolts.models.vision.unet import UNet |
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