Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
PaddlePaddle
PaddleOCR
提交
b615f670
P
PaddleOCR
项目概览
PaddlePaddle
/
PaddleOCR
大约 1 年 前同步成功
通知
1528
Star
32962
Fork
6643
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
108
列表
看板
标记
里程碑
合并请求
7
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
P
PaddleOCR
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
108
Issue
108
列表
看板
标记
里程碑
合并请求
7
合并请求
7
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
提交
b615f670
编写于
12月 18, 2020
作者:
W
WenmuZhou
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
load model by pretrained_model
上级
73d4b41a
变更
6
隐藏空白更改
内联
并排
Showing
6 changed file
with
14 addition
and
15 deletion
+14
-15
doc/doc_ch/angle_class.md
doc/doc_ch/angle_class.md
+1
-1
doc/doc_ch/detection.md
doc/doc_ch/detection.md
+3
-3
doc/doc_ch/recognition.md
doc/doc_ch/recognition.md
+2
-3
doc/doc_en/angle_class_en.md
doc/doc_en/angle_class_en.md
+1
-1
doc/doc_en/detection_en.md
doc/doc_en/detection_en.md
+3
-3
doc/doc_en/recognition_en.md
doc/doc_en/recognition_en.md
+4
-4
未找到文件。
doc/doc_ch/angle_class.md
浏览文件 @
b615f670
...
...
@@ -117,7 +117,7 @@ python3 tools/eval.py -c configs/cls/cls_mv3.yml -o Global.checkpoints={path/to/
```
# 预测分类结果
python3 tools/infer_cls.py -c configs/cls/cls_mv3.yml -o Global.
checkpoints={path/to/weights}/best_accuracy
Global.infer_img=doc/imgs_words/ch/word_1.jpg
python3 tools/infer_cls.py -c configs/cls/cls_mv3.yml -o Global.
pretrained_model={path/to/weights}/best_accuracy Global.load_static_weights=false
Global.infer_img=doc/imgs_words/ch/word_1.jpg
```
预测图片:
...
...
doc/doc_ch/detection.md
浏览文件 @
b615f670
...
...
@@ -120,16 +120,16 @@ python3 tools/eval.py -c configs/det/det_mv3_db.yml -o Global.checkpoints="{pat
测试单张图像的检测效果
```
shell
python3 tools/infer_det.py
-c
configs/det/det_mv3_db.yml
-o
Global.infer_img
=
"./doc/imgs_en/img_10.jpg"
Global.
checkpoints
=
"./output/det_db/best_accuracy"
python3 tools/infer_det.py
-c
configs/det/det_mv3_db.yml
-o
Global.infer_img
=
"./doc/imgs_en/img_10.jpg"
Global.
pretrained_model
=
"./output/det_db/best_accuracy"
Global.load_static_weights
=
false
```
测试DB模型时,调整后处理阈值,
```
shell
python3 tools/infer_det.py
-c
configs/det/det_mv3_db.yml
-o
Global.infer_img
=
"./doc/imgs_en/img_10.jpg"
Global.
checkpoints
=
"./output/det_db/best_accuracy"
PostProcess.box_thresh
=
0.6 PostProcess.unclip_ratio
=
1.5
python3 tools/infer_det.py
-c
configs/det/det_mv3_db.yml
-o
Global.infer_img
=
"./doc/imgs_en/img_10.jpg"
Global.
pretrained_model
=
"./output/det_db/best_accuracy"
Global.load_static_weights
=
false
PostProcess.box_thresh
=
0.6 PostProcess.unclip_ratio
=
1.5
```
测试文件夹下所有图像的检测效果
```
shell
python3 tools/infer_det.py
-c
configs/det/det_mv3_db.yml
-o
Global.infer_img
=
"./doc/imgs_en/"
Global.
checkpoints
=
"./output/det_db/best_accuracy"
python3 tools/infer_det.py
-c
configs/det/det_mv3_db.yml
-o
Global.infer_img
=
"./doc/imgs_en/"
Global.
pretrained_model
=
"./output/det_db/best_accuracy"
Global.load_static_weights
=
false
```
doc/doc_ch/recognition.md
浏览文件 @
b615f670
...
...
@@ -324,7 +324,6 @@ Eval:
评估数据集可以通过
`configs/rec/rec_icdar15_train.yml`
修改Eval中的
`label_file_path`
设置。
*注意*
评估时必须确保配置文件中 infer_img 字段为空
```
# GPU 评估, Global.checkpoints 为待测权重
python3 -m paddle.distributed.launch --gpus '0' tools/eval.py -c configs/rec/rec_icdar15_train.yml -o Global.checkpoints={path/to/weights}/best_accuracy
...
...
@@ -342,7 +341,7 @@ python3 -m paddle.distributed.launch --gpus '0' tools/eval.py -c configs/rec/rec
```
# 预测英文结果
python3 tools/infer_rec.py -c configs/rec/rec_icdar15_train.yml -o Global.
checkpoints={path/to/weights}/best_accuracy
Global.infer_img=doc/imgs_words/en/word_1.png
python3 tools/infer_rec.py -c configs/rec/rec_icdar15_train.yml -o Global.
pretrained_model={path/to/weights}/best_accuracy Global.load_static_weights=false
Global.infer_img=doc/imgs_words/en/word_1.png
```
预测图片:
...
...
@@ -361,7 +360,7 @@ infer_img: doc/imgs_words/en/word_1.png
```
# 预测中文结果
python3 tools/infer_rec.py -c configs/rec/ch_ppocr_v2.0/rec_chinese_lite_train_v2.0.yml -o Global.
checkpoints={path/to/weights}/best_accuracy
Global.infer_img=doc/imgs_words/ch/word_1.jpg
python3 tools/infer_rec.py -c configs/rec/ch_ppocr_v2.0/rec_chinese_lite_train_v2.0.yml -o Global.
pretrained_model={path/to/weights}/best_accuracy Global.load_static_weights=false
Global.infer_img=doc/imgs_words/ch/word_1.jpg
```
预测图片:
...
...
doc/doc_en/angle_class_en.md
浏览文件 @
b615f670
...
...
@@ -119,7 +119,7 @@ Use `Global.infer_img` to specify the path of the predicted picture or folder, a
```
# Predict English results
python3 tools/infer_cls.py -c configs/cls/cls_mv3.yml -o Global.
checkpoints={path/to/weights}/best_accuracy
Global.infer_img=doc/imgs_words_en/word_10.png
python3 tools/infer_cls.py -c configs/cls/cls_mv3.yml -o Global.
pretrained_model={path/to/weights}/best_accuracy Global.load_static_weights=false
Global.infer_img=doc/imgs_words_en/word_10.png
```
Input image:
...
...
doc/doc_en/detection_en.md
浏览文件 @
b615f670
...
...
@@ -113,16 +113,16 @@ python3 tools/eval.py -c configs/det/det_mv3_db.yml -o Global.checkpoints="{pat
Test the detection result on a single image:
```
shell
python3 tools/infer_det.py
-c
configs/det/det_mv3_db.yml
-o
Global.infer_img
=
"./doc/imgs_en/img_10.jpg"
Global.
checkpoints
=
"./output/det_db/best_accuracy"
python3 tools/infer_det.py
-c
configs/det/det_mv3_db.yml
-o
Global.infer_img
=
"./doc/imgs_en/img_10.jpg"
Global.
pretrained_model
=
"./output/det_db/best_accuracy"
Global.load_static_weights
=
false
```
When testing the DB model, adjust the post-processing threshold:
```
shell
python3 tools/infer_det.py
-c
configs/det/det_mv3_db.yml
-o
Global.infer_img
=
"./doc/imgs_en/img_10.jpg"
Global.
checkpoints
=
"./output/det_db/best_accuracy"
PostProcess.box_thresh
=
0.6 PostProcess.unclip_ratio
=
1.5
python3 tools/infer_det.py
-c
configs/det/det_mv3_db.yml
-o
Global.infer_img
=
"./doc/imgs_en/img_10.jpg"
Global.
pretrained_model
=
"./output/det_db/best_accuracy"
Global.load_static_weights
=
false
PostProcess.box_thresh
=
0.6 PostProcess.unclip_ratio
=
1.5
```
Test the detection result on all images in the folder:
```
shell
python3 tools/infer_det.py
-c
configs/det/det_mv3_db.yml
-o
Global.infer_img
=
"./doc/imgs_en/"
Global.
checkpoints
=
"./output/det_db/best_accuracy"
python3 tools/infer_det.py
-c
configs/det/det_mv3_db.yml
-o
Global.infer_img
=
"./doc/imgs_en/"
Global.
pretrained_model
=
"./output/det_db/best_accuracy"
Global.load_static_weights
=
false
```
doc/doc_en/recognition_en.md
浏览文件 @
b615f670
...
...
@@ -317,11 +317,11 @@ Eval:
<a
name=
"EVALUATION"
></a>
### EVALUATION
The evaluation data
set can be modified via
`configs/rec/rec_icdar15_reader.yml`
setting of
`label_file_path`
in EvalReader
.
The evaluation data
set can be set by modifying the
`Eval.dataset.label_file_list`
field in the
`configs/rec/rec_icdar15_train.yml`
file
.
```
# GPU evaluation, Global.checkpoints is the weight to be tested
python3 -m paddle.distributed.launch --gpus '0' tools/eval.py -c configs/rec/rec_icdar15_
reader
.yml -o Global.checkpoints={path/to/weights}/best_accuracy
python3 -m paddle.distributed.launch --gpus '0' tools/eval.py -c configs/rec/rec_icdar15_
train
.yml -o Global.checkpoints={path/to/weights}/best_accuracy
```
<a
name=
"PREDICTION"
></a>
...
...
@@ -336,7 +336,7 @@ The default prediction picture is stored in `infer_img`, and the weight is speci
```
# Predict English results
python3 tools/infer_rec.py -c configs/rec/ch_ppocr_v2.0/rec_chinese_lite_train_v2.0.yml -o Global.
checkpoints={path/to/weights}/best_accuracy TestReader
.infer_img=doc/imgs_words/en/word_1.jpg
python3 tools/infer_rec.py -c configs/rec/ch_ppocr_v2.0/rec_chinese_lite_train_v2.0.yml -o Global.
pretrained_model={path/to/weights}/best_accuracy Global.load_static_weights=false Global
.infer_img=doc/imgs_words/en/word_1.jpg
```
Input image:
...
...
@@ -354,7 +354,7 @@ The configuration file used for prediction must be consistent with the training.
```
# Predict Chinese results
python3 tools/infer_rec.py -c configs/rec/ch_ppocr_v2.0/rec_chinese_lite_train_v2.0.yml -o Global.
checkpoints={path/to/weights}/best_accuracy TestReader
.infer_img=doc/imgs_words/ch/word_1.jpg
python3 tools/infer_rec.py -c configs/rec/ch_ppocr_v2.0/rec_chinese_lite_train_v2.0.yml -o Global.
pretrained_model={path/to/weights}/best_accuracy Global.load_static_weights=false Global
.infer_img=doc/imgs_words/ch/word_1.jpg
```
Input image:
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录