-
Notifications
You must be signed in to change notification settings - Fork 7k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
MNIST and FashionMNIST now have their own 'raw' and 'processed' folders #601
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This overall looks good, thanks!
But this patch makes MNIST Python3 only, so this needs to be changed.
torchvision/datasets/mnist.py
Outdated
pass | ||
else: | ||
raise | ||
os.makedirs(self.raw_folder, exist_ok=True) |
This comment was marked as off-topic.
This comment was marked as off-topic.
Sorry, something went wrong.
This comment was marked as off-topic.
This comment was marked as off-topic.
Sorry, something went wrong.
This comment was marked as off-topic.
This comment was marked as off-topic.
Sorry, something went wrong.
This comment was marked as off-topic.
This comment was marked as off-topic.
Sorry, something went wrong.
Ready. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This looks very good, and is almost ready to be merged.
I have a single comment, can you address it so that I can merge this?
Thanks a lot, the code is looking much better!
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks!
This commit will modify the folder structure to avoid needing to download the datasets and relying on the dataset website from being available. This caused a canary to fail (TT-0407832742). The dependency has existed since Pytorch 1.1 upgrade, as the directory structure was modified in pytorch/vision#601
This commit will modify the folder structure to avoid needing to download the datasets and relying on the dataset website from being available. This caused a canary to fail. The dependency has existed since Pytorch 1.1 upgrade, as the directory structure was modified in pytorch/vision#601
Addresses #599.