-
Notifications
You must be signed in to change notification settings - Fork 2.9k
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
COCO dataset for SSD and update README.md #844
Merged
Merged
Changes from all commits
Commits
Show all changes
46 commits
Select commit
Hold shift + click to select a range
fc88336
ready to coco_reader
xingyuanbu cd568b6
complete coco_reader.py & coco_train.py
xingyuanbu e037b8e
complete coco reader
xingyuanbu 5336461
Merge branch 'develop' into ssd_coco_reader
xingyuanbu 1e2b631
rename file
xingyuanbu 997f042
Merge branch 'develop' into ssd_coco_reader
xingyuanbu 1396550
use argparse instead of explicit assignment
xingyuanbu 33faeb7
fix
xingyuanbu 73a037f
fix reader bug for some gray image in coco data
xingyuanbu c164349
ready to train coco
xingyuanbu f4d7765
fix bug in test()
xingyuanbu 9fd6d88
fix bug in test()
xingyuanbu dde4fcd
change coco dataset to coco2017 dataset
xingyuanbu c4e9e17
change dataset from coco to coco2017
xingyuanbu 69afb99
change learning rate
xingyuanbu ed70cbf
fix bug in gt label (category id 2 label)
xingyuanbu 027df47
fix bug in background label
xingyuanbu 2cf5084
save model when train finished
xingyuanbu 4a059e7
use coco map
xingyuanbu b910bf2
Merge branch 'develop' into ssd_coco_reader
xingyuanbu 9d3f38e
wqMerge branch 'develop' of https://github.com/PaddlePaddle/models in…
xingyuanbu 8c64c9c
adding coco year version args: 2014 or 2017
xingyuanbu 5f6b2a9
Merge branch 'develop' of https://github.com/PaddlePaddle/models into…
xingyuanbu 61adbdb
add coco dataset download, and README.md
xingyuanbu b016bc1
fix
xingyuanbu 9e31023
fix image truncted IOError, map version error
xingyuanbu 26063fd
add test config
xingyuanbu 863415d
add eval.py for evaluate trained model
xingyuanbu 58cae07
fix
xingyuanbu 7ebd4bd
fix bug when cocoMAP
xingyuanbu 6f4d939
updata READEME.md
xingyuanbu 6bd3f3f
fix cocoMAP bug
xingyuanbu 813fb39
find strange with test_program = fluid.default_main_program().clone(f…
xingyuanbu 2d0d2ae
add inference and visualize, awa, README.md
xingyuanbu 4efa01c
upload infer&visual example image
xingyuanbu a09b41c
refine image
xingyuanbu 932b150
refine
xingyuanbu 46db499
Merge branch 'develop' into ssd_coco_reader
sefira 161aea8
fix bug after merge
xingyuanbu b0bfbc3
follow yapf
xingyuanbu 8e0d855
follow comments
xingyuanbu 88bc588
fix bug after separate eval and eval_cocoMAP
xingyuanbu a08b8e5
follow yapf
xingyuanbu a5e427f
follow comments
xingyuanbu ba0a42f
follow yapf
xingyuanbu b016ed6
follow yapf
xingyuanbu File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
DIR="$( cd "$(dirname "$0")" ; pwd -P )" | ||
cd "$DIR" | ||
|
||
# Download the data. | ||
echo "Downloading..." | ||
wget http://images.cocodataset.org/zips/train2014.zip | ||
wget http://images.cocodataset.org/zips/val2014.zip | ||
wget http://images.cocodataset.org/zips/train2017.zip | ||
wget http://images.cocodataset.org/zips/val2017.zip | ||
wget http://images.cocodataset.org/annotations/annotations_trainval2014.zip | ||
wget http://images.cocodataset.org/annotations/annotations_trainval2017.zip | ||
# Extract the data. | ||
echo "Extractint..." | ||
unzip train2014.tar | ||
unzip val2014.tar | ||
unzip train2017.tar | ||
unzip val2017.tar | ||
unzip annotations_trainval2014.tar | ||
unzip annotations_trainval2017.tar | ||
|
This file contains 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
Oops, something went wrong.
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.
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.
这里是否要提供VOC的数据可视化?