-
Notifications
You must be signed in to change notification settings - Fork 7.1k
Remove download for ImageNet #1457
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
Conversation
Tests currently fail since the new code raises an error if the MD5 of the archive does not match. Shall I remove the download flag in the tests and simply parse the archives at first? Lines 111 to 116 in ed5b2dc
|
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 for the PR!
I have a comment, I think it will make usability better. Let me know what you think
@pmeier thanks for the PR! Can you rebase your changes on top of master, I've fixed CI for most of them. |
61d7e23
to
2548910
Compare
LGTM, but test failures seem to be related?
|
* remove force flag for parse_*_archive functions * cleanup
Codecov Report
@@ Coverage Diff @@
## master #1457 +/- ##
==========================================
- Coverage 64.46% 64.34% -0.12%
==========================================
Files 83 83
Lines 6421 6454 +33
Branches 982 992 +10
==========================================
+ Hits 4139 4153 +14
- Misses 1992 2006 +14
- Partials 290 295 +5
Continue to review full report at Codecov.
|
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!
I downloaded imagenet myself and used
|
addresses #1453
I introduced the function
parse_train_archive
andparse_val_archive
and changedparse_devkit
to take in anstr
pointing to an archive. Users that downloaded the dataset externally can use them to prepare the folders.