Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
PaddlePaddle
PaddleDetection
提交
f1b91931
P
PaddleDetection
项目概览
PaddlePaddle
/
PaddleDetection
大约 1 年 前同步成功
通知
695
Star
11112
Fork
2696
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
184
列表
看板
标记
里程碑
合并请求
40
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
P
PaddleDetection
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
184
Issue
184
列表
看板
标记
里程碑
合并请求
40
合并请求
40
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
未验证
提交
f1b91931
编写于
6月 08, 2020
作者:
Q
qingqing01
提交者:
GitHub
6月 08, 2020
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
Add Python version description for ViualDL (#895)
上级
377a5ce1
变更
2
隐藏空白更改
内联
并排
Showing
2 changed file
with
42 addition
and
8 deletion
+42
-8
docs/tutorials/QUICK_STARTED.md
docs/tutorials/QUICK_STARTED.md
+19
-4
docs/tutorials/QUICK_STARTED_cn.md
docs/tutorials/QUICK_STARTED_cn.md
+23
-4
未找到文件。
docs/tutorials/QUICK_STARTED.md
浏览文件 @
f1b91931
...
...
@@ -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
<host_IP>
--port
<port_num>
...
...
@@ -35,7 +43,9 @@ visualdl --logdir vdl_fruit_dir/scalar/ --host <host_IP> --port <port_num>
Result on VisualDL is shown below:
![
visualdl_fruit.jpg
](
../images/visualdl_fruit.jpg
)
<div
align=
"center"
>
<img
src=
'../images/visualdl_fruit.jpg'
width=
'800'
>
</div>
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:
<div
align=
"center"
>
<img
src=
'../../demo/orange_71.jpg'
width=
'600'
>
</div>
![
orange_71.jpg
](
../../demo/orange_71.jpg
)
![
orange_71_detection.jpg
](
../images/orange_71_detection.jpg
)
<div
align=
"center"
>
<img
src=
'../images/orange_71_detection.jpg'
width=
'600'
>
</div>
For detailed infomation of training and evalution, please refer to
[
GETTING_STARTED.md
](
GETTING_STARTED.md
)
.
docs/tutorials/QUICK_STARTED_cn.md
浏览文件 @
f1b91931
...
...
@@ -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
<host_IP>
--port
<port_num>
...
...
@@ -38,7 +48,9 @@ visualdl --logdir vdl_fruit_dir/scalar/ --host <host_IP> --port <port_num>
VisualDL结果显示如下:
![](
../images/visualdl_fruit.jpg
)
<div
align=
"center"
>
<img
src=
'../images/visualdl_fruit.jpg'
width=
'800'
>
</div>
训练模型
[
下载链接
](
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
)
<div
align=
"center"
>
<img
src=
'../../demo/orange_71.jpg'
width=
'600'
>
</div>
<div
align=
"center"
>
<img
src=
'../images/orange_71_detection.jpg'
width=
'600'
>
</div>
更多训练及评估流程,请参考
[
入门使用文档
](
GETTING_STARTED_cn.md
)
。
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录