Skip to content

Commit 5d0d296

Browse files
committed
made dataloader parsable
1 parent 22df0a0 commit 5d0d296

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

utils/dataloaders/__init__.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,14 @@
22
"USPSDataset0_6",
33
"USPSH5_Digit_7_9_Dataset",
44
"MNISTDataset0_3",
5+
"MNISTDataset4_9",
56
"Downloader",
67
"SVHNDataset",
78
]
89

910
from .download import Downloader
1011
from .mnist_0_3 import MNISTDataset0_3
12+
from .mnist_4_9 import MNISTDataset4_9
1113
from .svhn import SVHNDataset
1214
from .usps_0_6 import USPSDataset0_6
1315
from .uspsh5_7_9 import USPSH5_Digit_7_9_Dataset

utils/dataloaders/mnist_4_9.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
from .datasources import MNIST_SOURCE
77

8-
class MNIST_4_9(Dataset):
8+
class MNISTDataset4_9(Dataset):
99
"""
1010
MNIST dataset of numbers 4-9.
1111

0 commit comments

Comments
 (0)