Even when we pass --dataset mnist to test_fashion.py, the initial download downloads the Fashion MNIST dataset and downloads it within MNIST directory. This is because, load_fashion() function is not passing kFashion parameter to getdb() function. This is causing kFashion to default to true and for the URL fetched for downloading the dataset to be Fashion MNIST url even if the user wished for MNIST url.
Even when we pass
--dataset mnist
totest_fashion.py
, the initial download downloads the Fashion MNIST dataset and downloads it within MNIST directory. This is because, load_fashion() function is not passingkFashion
parameter to getdb() function. This is causingkFashion
to default to true and for the URL fetched for downloading the dataset to beFashion MNIST
url even if the user wished forMNIST
url.