-
Notifications
You must be signed in to change notification settings - Fork 310
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #174 from gganapavarapu/master
Segregated dependencies to support higher version of python and other packages.
- Loading branch information
Showing
3 changed files
with
332 additions
and
87 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,44 @@ | ||
from .mnist_dataset import MNISTDataset | ||
from .meps_dataset import MEPSDataset | ||
from .heloc_dataset import HELOCDataset | ||
from .celeba_dataset import CelebADataset | ||
from .cdc_dataset import CDCDataset | ||
from .cifar_dataset import CIFARDataset | ||
from .ted_dataset import TEDDataset | ||
from .fashion_mnist_dataset import FMnistDataset | ||
from .esnli_dataset import eSNLIDataset | ||
try: | ||
from .mnist_dataset import MNISTDataset | ||
except: | ||
pass | ||
|
||
try: | ||
from .meps_dataset import MEPSDataset | ||
except: | ||
pass | ||
|
||
try: | ||
from .heloc_dataset import HELOCDataset | ||
except: | ||
pass | ||
|
||
try: | ||
from .celeba_dataset import CelebADataset | ||
except: | ||
pass | ||
|
||
try: | ||
from .cdc_dataset import CDCDataset | ||
except: | ||
pass | ||
|
||
try: | ||
from .cifar_dataset import CIFARDataset | ||
except: | ||
pass | ||
|
||
try: | ||
from .ted_dataset import TEDDataset | ||
except: | ||
pass | ||
|
||
try: | ||
from .fashion_mnist_dataset import FMnistDataset | ||
except: | ||
pass | ||
|
||
try: | ||
from .esnli_dataset import eSNLIDataset | ||
except: | ||
pass |
Oops, something went wrong.