Fix the doc of VisualDL, test=document_fix (#738)

pull/753/head
Tingquan Gao 2021-05-25 14:42:17 +08:00 committed by GitHub
parent b5de5322b9
commit a759ba8bea
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 4 deletions

View File

@ -10,7 +10,7 @@ Now PaddleClas support use VisualDL to visualize the changes of learning rate, l
You only need to set the `vdl_dir` field in train config:
```yaml
# confit.txt
# config.yaml
vdl_dir: "./vdl.log"
```
@ -19,7 +19,7 @@ vdl_dir: "./vdl.log"
Then normal start training:
```shell
python3 tools/train.py -c config.txt
python3 tools/train.py -c config.yaml
```
### Start VisualDL

View File

@ -10,7 +10,7 @@ VisualDL是飞桨可视化分析工具以丰富的图表呈现训练参数变
在PaddleClas中使用VisualDL只需在训练配置文件config文件添加如下字段
```yaml
# confit.txt
# config.yaml
vdl_dir: "./vdl.log"
```
`vdl_dir` 用于指定VisualDL用于保存log信息的目录。
@ -18,7 +18,7 @@ vdl_dir: "./vdl.log"
然后正常启动训练即可:
```shell
python3 tools/train.py -c config.txt
python3 tools/train.py -c config.yaml
```
### 启动VisualDL