Unverified Commit ad3bbef9 authored by Philip Meier's avatar Philip Meier Committed by GitHub
Browse files

fashion_mnist (#3337)

parent d5bc2b24
......@@ -195,6 +195,10 @@ def mnist():
return collect_download_configs(lambda: datasets.MNIST(".", download=True), name="MNIST")
def fashion_mnist():
return collect_download_configs(lambda: datasets.FashionMNIST(".", download=True), name="FashionMNIST")
def make_parametrize_kwargs(download_configs):
argvalues = []
ids = []
......@@ -216,6 +220,7 @@ def make_parametrize_kwargs(download_configs):
# The VOC download server is unstable. See https://github.com/pytorch/vision/issues/2953 for details.
# voc(),
mnist(),
fashion_mnist(),
)
)
)
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment