Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
PaddlePaddle
PaddleOCR
提交
738d787b
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看板
提交
738d787b
编写于
7月 07, 2020
作者:
L
LDOUBLEV
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
fix doc and modify config
上级
f5e0e9d0
变更
6
隐藏空白更改
内联
并排
Showing
6 changed file
with
10 addition
and
5 deletion
+10
-5
README.md
README.md
+1
-0
README_en.md
README_en.md
+3
-0
configs/det/det_mv3_db.yml
configs/det/det_mv3_db.yml
+3
-2
configs/det/det_mv3_east.yml
configs/det/det_mv3_east.yml
+1
-1
configs/det/det_r50_vd_db.yml
configs/det/det_r50_vd_db.yml
+1
-1
configs/det/det_r50_vd_east.yml
configs/det/det_r50_vd_east.yml
+1
-1
未找到文件。
README.md
浏览文件 @
738d787b
...
...
@@ -92,6 +92,7 @@ python3 tools/infer/predict_system.py --image_dir="./doc/imgs/11.jpg" --det_mode
-
[
文本检测模型训练/评估/预测
](
./doc/doc_ch/detection.md
)
-
[
文本识别模型训练/评估/预测
](
./doc/doc_ch/recognition.md
)
-
[
基于预测引擎推理
](
./doc/doc_ch/inference.md
)
-
[
yml配置文件参数介绍
](
./doc/doc_ch/config_ch.md
)
-
[
数据集
](
./doc/doc_ch/datasets.md
)
-
[
FAQ
](
#FAQ
)
-
[
联系我们
](
#欢迎加入PaddleOCR技术交流群
)
...
...
README_en.md
浏览文件 @
738d787b
...
...
@@ -92,7 +92,9 @@ For more text detection and recognition models, please refer to the document [In
-
[
Text detection model training/evaluation/prediction
](
./doc/doc_en/detection_en.md
)
-
[
Text recognition model training/evaluation/prediction
](
./doc/doc_en/recognition_en.md
)
-
[
Inference
](
./doc/doc_en/inference_en.md
)
-
[
Introduction of yml file
](
./doc/doc_en/config_en.md
)
-
[
Dataset
](
./doc/doc_en/datasets_en.md
)
-
[
FAQ
](
(#FAQ
)
## TEXT DETECTION ALGORITHM
...
...
@@ -170,6 +172,7 @@ Please refer to the document for training guide and use of PaddleOCR text recogn
![](
doc/imgs_results/chinese_db_crnn_server/2.jpg
)
![](
doc/imgs_results/chinese_db_crnn_server/8.jpg
)
<a
name=
"FAQ"
></a>
## FAQ
1.
Error when using attention-based recognition model: KeyError: 'predict'
...
...
configs/det/det_mv3_db.yml
浏览文件 @
738d787b
...
...
@@ -6,7 +6,8 @@ Global:
print_batch_step
:
2
save_model_dir
:
./output/det_db/
save_epoch_step
:
200
eval_batch_step
:
5000
# evaluation is run every 2000 iterations after the 5000th iteration
eval_batch_step
:
[
5000
,
5000
]
train_batch_size_per_card
:
16
test_batch_size_per_card
:
16
image_shape
:
[
3
,
640
,
640
]
...
...
@@ -50,4 +51,4 @@ PostProcess:
thresh
:
0.3
box_thresh
:
0.7
max_candidates
:
1000
unclip_ratio
:
2.0
\ No newline at end of file
unclip_ratio
:
2.0
configs/det/det_mv3_east.yml
浏览文件 @
738d787b
...
...
@@ -6,7 +6,7 @@ Global:
print_batch_step
:
5
save_model_dir
:
./output/det_east/
save_epoch_step
:
200
eval_batch_step
:
5000
eval_batch_step
:
[
5000
,
5000
]
train_batch_size_per_card
:
16
test_batch_size_per_card
:
16
image_shape
:
[
3
,
512
,
512
]
...
...
configs/det/det_r50_vd_db.yml
浏览文件 @
738d787b
...
...
@@ -6,7 +6,7 @@ Global:
print_batch_step
:
2
save_model_dir
:
./output/det_db/
save_epoch_step
:
200
eval_batch_step
:
5000
eval_batch_step
:
[
5000
,
5000
]
train_batch_size_per_card
:
8
test_batch_size_per_card
:
16
image_shape
:
[
3
,
640
,
640
]
...
...
configs/det/det_r50_vd_east.yml
浏览文件 @
738d787b
...
...
@@ -6,7 +6,7 @@ Global:
print_batch_step
:
5
save_model_dir
:
./output/det_east/
save_epoch_step
:
200
eval_batch_step
:
5000
eval_batch_step
:
[
5000
,
5000
]
train_batch_size_per_card
:
8
test_batch_size_per_card
:
16
image_shape
:
[
3
,
512
,
512
]
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录