Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
PaddlePaddle
PaddleOCR
提交
ce1b4a34
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看板
提交
ce1b4a34
编写于
5月 29, 2020
作者:
T
tink2123
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
add ano
上级
6dd494b6
变更
4
隐藏空白更改
内联
并排
Showing
4 changed file
with
87 addition
and
13 deletion
+87
-13
ppocr/modeling/heads/rec_ctc_head.py
ppocr/modeling/heads/rec_ctc_head.py
+8
-0
ppocr/utils/character.py
ppocr/utils/character.py
+28
-4
tools/eval_utils/eval_rec_utils.py
tools/eval_utils/eval_rec_utils.py
+3
-1
tools/program.py
tools/program.py
+48
-8
未找到文件。
ppocr/modeling/heads/rec_ctc_head.py
浏览文件 @
ce1b4a34
...
...
@@ -27,6 +27,14 @@ import numpy as np
class
CTCPredict
(
object
):
"""
CTC predict
Args:
params(object): Params from yaml file and settings from command line
"""
def
__init__
(
self
,
params
):
super
(
CTCPredict
,
self
).
__init__
()
self
.
char_num
=
params
[
'char_num'
]
...
...
ppocr/utils/character.py
浏览文件 @
ce1b4a34
...
...
@@ -149,12 +149,16 @@ def cal_predicts_accuracy(char_ops,
Args:
char_ops: CharacterOps
preds: preds result,text index
preds_lod:
labels:
labels_lod:
is_remove_duplicate:
preds_lod: lod tensor of preds
labels: label of input image, text index
labels_lod: lod tensor of label
is_remove_duplicate: Whether to remove duplicate characters,
The default is False
Return:
acc: The accuracy of test set
acc_num: The correct number of samples predicted
img_num: The total sample number of the test set
"""
acc_num
=
0
...
...
@@ -178,6 +182,16 @@ def cal_predicts_accuracy(char_ops,
def
convert_rec_attention_infer_res
(
preds
):
"""
Convert recognition attention predict result with lod information
Args:
preds: the output of the model
Return:
convert_ids: A 1-D Tensor represents all the predicted results.
target_lod: The lod information of the predicted results
"""
img_num
=
preds
.
shape
[
0
]
target_lod
=
[
0
]
convert_ids
=
[]
...
...
@@ -195,6 +209,16 @@ def convert_rec_attention_infer_res(preds):
def
convert_rec_label_to_lod
(
ori_labels
):
"""
Convert recognition label to lod tensor
Args:
ori_labels: origin labels of total images
Return:
convert_ids: A 1-D Tensor represents all labels
target_lod: The lod information of the labels
"""
img_num
=
len
(
ori_labels
)
target_lod
=
[
0
]
convert_ids
=
[]
...
...
tools/eval_utils/eval_rec_utils.py
浏览文件 @
ce1b4a34
...
...
@@ -83,7 +83,9 @@ def eval_rec_run(exe, config, eval_info_dict, mode):
def
test_rec_benchmark
(
exe
,
config
,
eval_info_dict
):
" 评估lmdb 数据"
"""
eval rec benchmark
"""
eval_data_list
=
[
'IIIT5k_3000'
,
'SVT'
,
'IC03_860'
,
'IC03_867'
,
\
'IC13_857'
,
'IC13_1015'
,
'IC15_1811'
,
'IC15_2077'
,
'SVTP'
,
'CUTE80'
]
eval_data_dir
=
config
[
'TestReader'
][
'lmdb_sets_dir'
]
...
...
tools/program.py
浏览文件 @
ce1b4a34
...
...
@@ -35,6 +35,10 @@ from ppocr.utils.character import cal_predicts_accuracy
class
ArgsParser
(
ArgumentParser
):
"""
Parase arguments
"""
def
__init__
(
self
):
super
(
ArgsParser
,
self
).
__init__
(
formatter_class
=
RawDescriptionHelpFormatter
)
...
...
@@ -61,7 +65,9 @@ class ArgsParser(ArgumentParser):
class
AttrDict
(
dict
):
"""Single level attribute dict, NOT recursive"""
"""
Single level attribute dict, NOT recursive
"""
def
__init__
(
self
,
**
kwargs
):
super
(
AttrDict
,
self
).
__init__
()
...
...
@@ -146,21 +152,22 @@ def check_gpu(use_gpu):
def
build
(
config
,
main_prog
,
startup_prog
,
mode
):
"""
Build a program using a model and an optimizer
1. create feeds
2. create a dataloader
3. create a model
4. create fetchs
5. create an optimizer
1. create a dataloader
2. create a model
3. create fetchs
4. create an optimizer
Args:
config(dict): config
main_prog(): main program
startup_prog(): startup program
is_train(bool
): train or valid
mode(str
): train or valid
Returns:
dataloader(): a bridge between the model and the data
fetchs(dict): dict of model outputs(included loss and measures)
fetch_name_list(dict): dict of model outputs(included loss and measures)
fetch_varname_list(list): list of outputs' varname
opt_loss_name(str): name of loss
"""
with
fluid
.
program_guard
(
main_prog
,
startup_prog
):
with
fluid
.
unique_name
.
guard
():
...
...
@@ -185,6 +192,19 @@ def build(config, main_prog, startup_prog, mode):
def
build_export
(
config
,
main_prog
,
startup_prog
):
"""
Build a program for export model
1. create a model
2. create fetchs
Args:
config(dict): config
main_prog(): main program
startup_prog(): startup program
Returns:
feeded_var_names(list): list of feeded var names
target_vars(list): list of output[fetches_var]
fetches_var_name(list): list of fetch var name
"""
with
fluid
.
program_guard
(
main_prog
,
startup_prog
):
with
fluid
.
unique_name
.
guard
():
...
...
@@ -212,6 +232,16 @@ def create_multi_devices_program(program, loss_var_name):
def
train_eval_det_run
(
config
,
exe
,
train_info_dict
,
eval_info_dict
):
"""
Feed data to the model and fetch the measures and loss for detection
Args:
config: config
exe:
train_info_dict: information dict for training
eval_info_dict: information dict for evaluation
"""
train_batch_id
=
0
log_smooth_window
=
config
[
'Global'
][
'log_smooth_window'
]
epoch_num
=
config
[
'Global'
][
'epoch_num'
]
...
...
@@ -277,6 +307,16 @@ def train_eval_det_run(config, exe, train_info_dict, eval_info_dict):
def
train_eval_rec_run
(
config
,
exe
,
train_info_dict
,
eval_info_dict
):
"""
Feed data to the model and fetch the measures and loss for recognition
Args:
config: config
exe:
train_info_dict: information dict for training
eval_info_dict: information dict for evaluation
"""
train_batch_id
=
0
log_smooth_window
=
config
[
'Global'
][
'log_smooth_window'
]
epoch_num
=
config
[
'Global'
][
'epoch_num'
]
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录