[Feature]Add coco, lvis and voc dataset download script based on pr #6715#7015
Merged
ZwwWayne merged 18 commits intoopen-mmlab:devfrom Jan 19, 2022
Czm369:coco_download
Merged
[Feature]Add coco, lvis and voc dataset download script based on pr #6715#7015ZwwWayne merged 18 commits intoopen-mmlab:devfrom Czm369:coco_download
ZwwWayne merged 18 commits intoopen-mmlab:devfrom
Czm369:coco_download
Conversation
You can use command "python tools/download.py --win --unzip" to download coco dataset. Linux for using command "python tools/download.py --unzip"
ZwwWayne
reviewed
Jan 17, 2022
Codecov Report
@@ Coverage Diff @@
## dev #7015 +/- ##
=======================================
Coverage 62.39% 62.39%
=======================================
Files 329 329
Lines 26176 26176
Branches 4432 4432
=======================================
Hits 16332 16332
- Misses 8974 8975 +1
+ Partials 870 869 -1
Flags with carried forward coverage won't be shown. Click here to find out more.
Continue to review full report at Codecov.
|
RangiLyu
reviewed
Jan 17, 2022
Member
|
Add documentation of this tool in docs/en/1_exist_data_model.md and docs/en/useful_tools.md. |
…/zh_cn/1_exist_data_model.md and docs/en/useful_tools.md.
RangiLyu
reviewed
Jan 18, 2022
RangiLyu
reviewed
Jan 18, 2022
hhaAndroid
reviewed
Jan 19, 2022
hhaAndroid
reviewed
Jan 19, 2022
hhaAndroid
reviewed
Jan 19, 2022
hhaAndroid
reviewed
Jan 19, 2022
hhaAndroid
reviewed
Jan 19, 2022
hhaAndroid
previously approved these changes
Jan 19, 2022
ZwwWayne
reviewed
Jan 19, 2022
chhluo
pushed a commit
to chhluo/mmdetection
that referenced
this pull request
Feb 21, 2022
…pen-mmlab#6715 (open-mmlab#7015) * Add coco dataset download script You can use command "python tools/download.py --win --unzip" to download coco dataset. Linux for using command "python tools/download.py --unzip" * Add coco dataset download script * Add coco dataset download script * Add coco dataset download script * add some notes and modify dataset urls * add some notes and modify dataset urls * remove some useless lines and modify urls list to dict * add urls of lvis and voc, and delete --win * add parse_args() * Add documentation of this tool in docs/en/1_exist_data_model.md, docs/zh_cn/1_exist_data_model.md and docs/en/useful_tools.md. * add a link * Download files regardless of system。 * Use get() of dict * add empty line above the code block * Update useful_tools.md Co-authored-by: q3394101 <92794867+q3394101@users.noreply.github.com> Co-authored-by: q3394101 <3394101@qq.com> Co-authored-by: Wenwei Zhang <40779233+ZwwWayne@users.noreply.github.com>
Closed
ZwwWayne
added a commit
that referenced
this pull request
Jul 18, 2022
…6715 (#7015) * Add coco dataset download script You can use command "python tools/download.py --win --unzip" to download coco dataset. Linux for using command "python tools/download.py --unzip" * Add coco dataset download script * Add coco dataset download script * Add coco dataset download script * add some notes and modify dataset urls * add some notes and modify dataset urls * remove some useless lines and modify urls list to dict * add urls of lvis and voc, and delete --win * add parse_args() * Add documentation of this tool in docs/en/1_exist_data_model.md, docs/zh_cn/1_exist_data_model.md and docs/en/useful_tools.md. * add a link * Download files regardless of system。 * Use get() of dict * add empty line above the code block * Update useful_tools.md Co-authored-by: q3394101 <92794867+q3394101@users.noreply.github.com> Co-authored-by: q3394101 <3394101@qq.com> Co-authored-by: Wenwei Zhang <40779233+ZwwWayne@users.noreply.github.com>
ZwwWayne
added a commit
to ZwwWayne/mmdetection
that referenced
this pull request
Jul 19, 2022
…pen-mmlab#6715 (open-mmlab#7015) * Add coco dataset download script You can use command "python tools/download.py --win --unzip" to download coco dataset. Linux for using command "python tools/download.py --unzip" * Add coco dataset download script * Add coco dataset download script * Add coco dataset download script * add some notes and modify dataset urls * add some notes and modify dataset urls * remove some useless lines and modify urls list to dict * add urls of lvis and voc, and delete --win * add parse_args() * Add documentation of this tool in docs/en/1_exist_data_model.md, docs/zh_cn/1_exist_data_model.md and docs/en/useful_tools.md. * add a link * Download files regardless of system。 * Use get() of dict * add empty line above the code block * Update useful_tools.md Co-authored-by: q3394101 <92794867+q3394101@users.noreply.github.com> Co-authored-by: q3394101 <3394101@qq.com> Co-authored-by: Wenwei Zhang <40779233+ZwwWayne@users.noreply.github.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Motivation
Add a script to download coco2017, lvis, voc2007 dataset based on #6715
Modification
Add a python file in tools/misc
BC-breaking (Optional)
This script do not link any other files
Use cases (Optional)
You can use command "python tools/download.py " to download coco2017 dataset.
Linux for using command "python tools/misc/download.py
You can alse use flag --unzip to unzip the zipfiles
such as python tools/misc/download.py --unzip
Checklist