Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
weixin_41840029
PaddleOCR
提交
da84f0b1
P
PaddleOCR
项目概览
weixin_41840029
/
PaddleOCR
与 Fork 源项目一致
Fork自
PaddlePaddle / PaddleOCR
通知
1
Star
1
Fork
0
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
0
列表
看板
标记
里程碑
合并请求
0
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
P
PaddleOCR
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
0
Issue
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
提交
da84f0b1
编写于
12月 10, 2020
作者:
L
LDOUBLEV
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
update
上级
cad5ea11
变更
2
显示空白变更内容
内联
并排
Showing
2 changed file
with
14 addition
and
4 deletion
+14
-4
doc/doc_ch/detection.md
doc/doc_ch/detection.md
+8
-3
doc/doc_en/detection_en.md
doc/doc_en/detection_en.md
+6
-1
未找到文件。
doc/doc_ch/detection.md
浏览文件 @
da84f0b1
...
...
@@ -73,12 +73,15 @@ tar -xf ./pretrain_models/MobileNetV3_large_x0_5_pretrained.tar ./pretrain_model
*如果您安装的是cpu版本,请将配置文件中的 `use_gpu` 字段修改为false*
```
shell
#
训练 mv3_db 模型,并将训练日志保存为 tain_det.log
#
单机单卡训练 mv3_db 模型
python3 tools/train.py
-c
configs/det/det_mv3_db.yml
\
-o
Global.pretrain_weights
=
./pretrain_models/MobileNetV3_large_x0_5_pretrained/
\
2>&1 |
tee
train_det.log
-o
Global.pretrain_weights
=
./pretrain_models/MobileNetV3_large_x0_5_pretrained/
# 单机多卡训练,通过 --select_gpus 参数设置使用的GPU ID;
python3
-m
paddle.distributed.launch
--selected_gpus
'0,1,2,3'
tools/train.py
-c
configs/det/det_mv3_db.yml
\
-o
Global.pretrain_weights
=
./pretrain_models/MobileNetV3_large_x0_5_pretrained/
```
上述指令中,通过-c 选择训练使用configs/det/det_db_mv3.yml配置文件。
有关配置文件的详细解释,请参考
[
链接
](
./config.md
)
。
...
...
@@ -92,6 +95,8 @@ python3 tools/train.py -c configs/det/det_mv3_db.yml -o Optimizer.base_lr=0.0001
如果训练程序中断,如果希望加载训练中断的模型从而恢复训练,可以通过指定Global.checkpoints指定要加载的模型路径:
```
shell
python3 tools/train.py
-c
configs/det/det_mv3_db.yml
-o
Global.checkpoints
=
./your/trained/model
```
**注意**
:
`Global.checkpoints`
的优先级高于
`Global.pretrain_weights`
的优先级,即同时指定两个参数时,优先加载
`Global.checkpoints`
指定的模型,如果
`Global.checkpoints`
指定的模型路径有误,会加载
`Global.pretrain_weights`
指定的模型。
...
...
doc/doc_en/detection_en.md
浏览文件 @
da84f0b1
...
...
@@ -64,7 +64,7 @@ tar -xf ./pretrain_models/MobileNetV3_large_x0_5_pretrained.tar ./pretrain_model
#### START TRAINING
*If CPU version installed, please set the parameter `use_gpu` to `false` in the configuration.*
```
shell
python3 tools/train.py
-c
configs/det/det_mv3_db.yml
2>&1 |
tee
train_det.log
python3 tools/train.py
-c
configs/det/det_mv3_db.yml
```
In the above instruction, use
`-c`
to select the training to use the
`configs/det/det_db_mv3.yml`
configuration file.
...
...
@@ -72,7 +72,12 @@ For a detailed explanation of the configuration file, please refer to [config](.
You can also use
`-o`
to change the training parameters without modifying the yml file. For example, adjust the training learning rate to 0.0001
```
shell
# single GPU training
python3 tools/train.py
-c
configs/det/det_mv3_db.yml
-o
Optimizer.base_lr
=
0.0001
# multi-GPU training
# Set the GPU ID used by the '--select_gpus' parameter;
python3
-m
paddle.distributed.launch
--selected_gpus
'0,1,2,3'
tools/train.py
-c
configs/det/det_mv3_db.yml
-o
Optimizer.base_lr
=
0.0001
```
#### load trained model and continue training
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录