-
Notifications
You must be signed in to change notification settings - Fork 2.9k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
COCO dataset for SSD and update README.md (#844)
* ready to coco_reader * complete coco_reader.py & coco_train.py * complete coco reader * rename file * use argparse instead of explicit assignment * fix * fix reader bug for some gray image in coco data * ready to train coco * fix bug in test() * fix bug in test() * change coco dataset to coco2017 dataset * change dataset from coco to coco2017 * change learning rate * fix bug in gt label (category id 2 label) * fix bug in background label * save model when train finished * use coco map * adding coco year version args: 2014 or 2017 * add coco dataset download, and README.md * fix * fix image truncted IOError, map version error * add test config * add eval.py for evaluate trained model * fix * fix bug when cocoMAP * updata READEME.md * fix cocoMAP bug * find strange with test_program = fluid.default_main_program().clone(for_test=True) * add inference and visualize, awa, README.md * upload infer&visual example image * refine image * refine * fix bug after merge * follow yapf * follow comments * fix bug after separate eval and eval_cocoMAP * follow yapf * follow comments * follow yapf * follow yapf
- Loading branch information
1 parent
806cff7
commit 496ff37
Showing
13 changed files
with
462 additions
and
141 deletions.
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.