Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
Xinlei Chen committed Oct 1, 2017
2 parents 3366999 + 22b820f commit 5ead7a1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@ Approximate *baseline* [setup](https://github.com/endernewton/tf-faster-rcnn/blo
- Train Resnet152 on COCO 2014 trainval35k and test on minival (1000k/1390k), **37.2**.

**Note**:
- The numbers should be further improved now due to a bug fix for adding regularization loss.
- Due to the randomness in GPU training with Tensorflow espeicially for VOC, the best numbers are reported (with 2-3 attempts) here. According to my experience, for COCO you can almost always get a very close number (within ~0.2%) despite the randomness.
- **All** the numbers are obtained with a different testing scheme without selecting region proposals using non-maximal suppression (TEST.MODE top), the default and original testing scheme (TEST.MODE nms) will likely result in slightly worse performance (see [report](https://arxiv.org/pdf/1702.02138.pdf), for COCO it drops 0.X AP).
- Since we keep the small proposals (\< 16 pixels width/height), our performance is especially good for small objects.
Expand Down
2 changes: 1 addition & 1 deletion lib/model/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -232,7 +232,7 @@
# Whether to regularize the depth-wise filters during training
__C.MOBILENET.REGU_DEPTH = False

# Number of fixed layers during training, by default the first of all 14 layers is fixed
# Number of fixed layers during training, by default the bottom 5 of 14 layers is fixed
# Range: 0 (none) to 12 (all)
__C.MOBILENET.FIXED_LAYERS = 5

Expand Down

0 comments on commit 5ead7a1

Please sign in to comment.