You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@mxnet.apache.org by ns...@apache.org on 2018/11/12 07:36:44 UTC

[incubator-mxnet] branch master updated: update the doc (#13205)

This is an automated email from the ASF dual-hosted git repository.

nswamy pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-mxnet.git


The following commit(s) were added to refs/heads/master by this push:
     new c18ad7d  update the doc (#13205)
c18ad7d is described below

commit c18ad7decdae712d4681d0bb2a0eec38d1d8f627
Author: Jake Lee <gs...@gmail.com>
AuthorDate: Sun Nov 11 23:36:12 2018 -0800

    update the doc (#13205)
---
 example/rcnn/README.md | 1 +
 1 file changed, 1 insertion(+)

diff --git a/example/rcnn/README.md b/example/rcnn/README.md
index ab3c8fb..b528418 100644
--- a/example/rcnn/README.md
+++ b/example/rcnn/README.md
@@ -32,6 +32,7 @@ Make a directory `data` and follow `py-faster-rcnn` for data preparation instruc
 ### Training and evaluation
 Use `python3 train.py --dataset $Dataset$ --network $Network$ --pretrained $IMAGENET_MODEL_FILE$ --gpus $GPUS$` to train,
 for example, `python3 train.py --dataset voc --network vgg16 --pretrained model/vgg16-0000.params --gpus 0,1`.
+use `python3 train.py --dataset voc --imageset 2007_trainval+2012_trainval --network vgg16 --pretrained model/vgg16-0000.params --gpus 0,1` to train on both of voc2007 and voc2012.
 Use `python3 test.py --dataset $Dataset$ --network $Network$ --params $MODEL_FILE$ --gpu $GPU$` to evaluate,
 for example, `python3 test.py --dataset voc --network vgg16 --params model/vgg16-0010.params --gpu 0`.