Skip to content

Commit 5b8c3a6

Browse files
committed
kmnist
1 parent d5bc2b2 commit 5b8c3a6

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

test/test_datasets_download.py

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -195,6 +195,10 @@ def mnist():
195195
return collect_download_configs(lambda: datasets.MNIST(".", download=True), name="MNIST")
196196

197197

198+
def kmnist():
199+
return collect_download_configs(lambda: datasets.KMNIST(".", download=True), name="KMNIST")
200+
201+
198202
def make_parametrize_kwargs(download_configs):
199203
argvalues = []
200204
ids = []
@@ -216,6 +220,7 @@ def make_parametrize_kwargs(download_configs):
216220
# The VOC download server is unstable. See https://github.com/pytorch/vision/issues/2953 for details.
217221
# voc(),
218222
mnist(),
223+
kmnist(),
219224
)
220225
)
221226
)

0 commit comments

Comments
 (0)