diff --git a/docs/tutorials/QUICK_STARTED.md b/docs/tutorials/QUICK_STARTED.md index 2f8a64cc03746aa7f947393a351edd5e523753f9..96adefb61204ec74c0ac7850d05862e9e2d289a0 100644 --- a/docs/tutorials/QUICK_STARTED.md +++ b/docs/tutorials/QUICK_STARTED.md @@ -20,6 +20,14 @@ python dataset/fruit/download_fruit.py Training: +```bash +python -u tools/train.py -c configs/yolov3_mobilenet_v1_fruit.yml --eval +``` + +Use `yolov3_mobilenet_v1` to fine-tune the model from COCO dataset. + +Meanwhile, loss and mAP can be observed on VisualDL by set `--use_vdl` and `--vdl_log_dir`. But note Python version required >= 3.5 for VisualDL. + ```bash python -u tools/train.py -c configs/yolov3_mobilenet_v1_fruit.yml \ --use_vdl=True \ @@ -27,7 +35,7 @@ python -u tools/train.py -c configs/yolov3_mobilenet_v1_fruit.yml \ --eval ``` -Use `yolov3_mobilenet_v1` to fine-tune the model from COCO dataset. Meanwhile, loss and mAP can be observed on VisualDL. +Then observe the loss and mAP curve through VisualDL command: ```bash visualdl --logdir vdl_fruit_dir/scalar/ --host --port @@ -35,7 +43,9 @@ visualdl --logdir vdl_fruit_dir/scalar/ --host --port Result on VisualDL is shown below: -![visualdl_fruit.jpg](../images/visualdl_fruit.jpg) +
+ +
Model can be downloaded [here](https://paddlemodels.bj.bcebos.com/object_detection/yolov3_mobilenet_v1_fruit.tar) @@ -55,8 +65,13 @@ python -u tools/infer.py -c configs/yolov3_mobilenet_v1_fruit.yml \ Inference images are shown below: +
+ +
+ -![orange_71.jpg](../../demo/orange_71.jpg) -![orange_71_detection.jpg](../images/orange_71_detection.jpg) +
+ +
For detailed infomation of training and evalution, please refer to [GETTING_STARTED.md](GETTING_STARTED.md). diff --git a/docs/tutorials/QUICK_STARTED_cn.md b/docs/tutorials/QUICK_STARTED_cn.md index 607f0e13631aee274bc235507c730f19d22cfa5d..3ba96e90edff1dab8ed77f652034d325cde45035 100644 --- a/docs/tutorials/QUICK_STARTED_cn.md +++ b/docs/tutorials/QUICK_STARTED_cn.md @@ -22,6 +22,16 @@ python dataset/fruit/download_fruit.py 训练命令如下: +```bash +python -u tools/train.py -c configs/yolov3_mobilenet_v1_fruit.yml --eval +``` + +训练使用`yolov3_mobilenet_v1`基于COCO数据集训练好的模型进行finetune。 + + +如果想通过VisualDL实时观察loss和精度值,启动命令添加`--use_vdl=True`,以及通过`--vdl_log_dir`设置日志保存路径,但注意**VisualDL需Python>=3.5**: + + ```bash python -u tools/train.py -c configs/yolov3_mobilenet_v1_fruit.yml \ --use_vdl=True \ @@ -29,7 +39,7 @@ python -u tools/train.py -c configs/yolov3_mobilenet_v1_fruit.yml \ --eval ``` -训练使用`yolov3_mobilenet_v1`基于COCO数据集训练好的模型进行finetune。训练期间可以通过VisualDL实时观察loss和精度值,启动命令如下: +通过`visualdl`命令实时查看变化曲线: ```bash visualdl --logdir vdl_fruit_dir/scalar/ --host --port @@ -38,7 +48,9 @@ visualdl --logdir vdl_fruit_dir/scalar/ --host --port VisualDL结果显示如下: -![](../images/visualdl_fruit.jpg) +
+ +
训练模型[下载链接](https://paddlemodels.bj.bcebos.com/object_detection/yolov3_mobilenet_v1_fruit.tar) @@ -61,7 +73,14 @@ python -u tools/infer.py -c configs/yolov3_mobilenet_v1_fruit.yml \ 预测图片如下: -![](../../demo/orange_71.jpg) -![](../images/orange_71_detection.jpg) +
+ +
+ + +
+ +
+ 更多训练及评估流程,请参考[入门使用文档](GETTING_STARTED_cn.md)。