-
Notifications
You must be signed in to change notification settings - Fork 304
Conversation
0d7289c
to
530d267
Compare
'voc0712': { | ||
'n_fg_class': 20, | ||
'url': 'https://github.com/yuyu2172/share-weights/releases/' | ||
'download/0.0.4/faster_rcnn_vgg16_voc0712_2017_07_21.npz' |
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.
This model is not marked as _trained_
although VOC07 model is marked. Was this model converted from Caffe or other frameworks?
examples/faster_rcnn/README.md
Outdated
``` | ||
$ python train.py [--gpu <gpu>] | ||
$ python train.py --dataset voc0712 --gpu GPU --step_size 80000 --iteration 110000 |
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.
$ python train.py --dataset voc0712 --step_size 80000 --iteration 110000 [--gpu <gpu>]
examples/faster_rcnn/README.md
Outdated
@@ -44,11 +45,14 @@ On top of that, the anchors are not discretized in ChainerCV. | |||
|
|||
|
|||
### Train code | |||
For training with VOC07 | |||
``` | |||
$ python train.py --dataset voc07 --gpu GPU --step_size 50000 --iteration 70000 |
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.
$ python train.py --dataset voc07 --step_size 50000 --iteration 70000 [--gpu <gpu>]
examples/faster_rcnn/README.md
Outdated
@@ -4,7 +4,8 @@ | |||
|
|||
| Training Setting | Evaluation | Reference | ChainerCV | | |||
|:-:|:-:|:-:|:-:| | |||
| VOC 2007 trainval | VOC 2007 test| 69.9 mAP [1] | 70.6 mAP | | |||
| VOC07 trainval | VOC07 test| 69.9 mAP [1] | 70.6 mAP | | |||
| VOC2007\&2012 trainval | VOC07 test| 73.2 mAP [1] | 74.7 mAP | |
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.
I think adding spaces around |
is beautiful. VOC07 test|
-> VOC07 test |
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.
VOC07 trainval
and VOC2007\&2012 trainval
look inconsistent.
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.
Thank you for pointing that out.
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.
LGTM
Merge after #265