Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
PaddlePaddle
PaddleOCR
提交
7e0c8aea
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看板
未验证
提交
7e0c8aea
编写于
5月 04, 2023
作者:
X
xiaoting
提交者:
GitHub
5月 04, 2023
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
revert eval mode (#9843)
* revert eval mode * update hgnet config
上级
b3066812
变更
3
隐藏空白更改
内联
并排
Showing
3 changed file
with
5 addition
and
13 deletion
+5
-13
configs/rec/PP-OCRv4/ch_PP-OCRv4_rec.yml
configs/rec/PP-OCRv4/ch_PP-OCRv4_rec.yml
+1
-5
configs/rec/PP-OCRv4/ch_PP-OCRv4_rec_hgnet.yml
configs/rec/PP-OCRv4/ch_PP-OCRv4_rec_hgnet.yml
+3
-7
ppocr/data/imaug/__init__.py
ppocr/data/imaug/__init__.py
+1
-1
未找到文件。
configs/rec/PP-OCRv4/ch_PP-OCRv4_rec.yml
浏览文件 @
7e0c8aea
...
...
@@ -121,13 +121,9 @@ Eval:
img_mode
:
BGR
channel_first
:
false
-
MultiLabelEncode
:
max_text_length
:
100
character_dict_path
:
ppocr/utils/ppocr_keys_v1.txt
use_space_char
:
True
gtc_encode
:
NRTRLabelEncode
-
RecResizeImg
:
image_shape
:
[
3
,
48
,
320
]
eval_mode
:
True
-
KeepKeys
:
keep_keys
:
-
image
...
...
@@ -138,5 +134,5 @@ Eval:
loader
:
shuffle
:
false
drop_last
:
false
batch_size_per_card
:
1
batch_size_per_card
:
1
28
num_workers
:
4
configs/rec/PP-OCRv4/ch_PP-OCRv4_rec_hgnet.yml
浏览文件 @
7e0c8aea
...
...
@@ -75,6 +75,7 @@ Train:
name
:
MultiScaleDataSet
ds_width
:
false
data_dir
:
./train_data/
ext_op_transform_idx
:
1
label_file_list
:
-
./train_data/train_list.txt
transforms
:
...
...
@@ -99,16 +100,15 @@ Train:
sampler
:
name
:
MultiScaleSampler
scales
:
[[
320
,
32
],
[
320
,
48
],
[
320
,
64
]]
# divide_factor: to ensure the width and height dimensions can be devided by downsampling multiple
first_bs
:
&bs
128
fix_bs
:
false
divided_factor
:
[
8
,
16
]
# w, h
is_training
:
True
loader
:
shuffle
:
true
batch_size_per_card
:
128
batch_size_per_card
:
*bs
drop_last
:
true
num_workers
:
4
num_workers
:
8
Eval
:
dataset
:
name
:
SimpleDataSet
...
...
@@ -120,13 +120,9 @@ Eval:
img_mode
:
BGR
channel_first
:
false
-
MultiLabelEncode
:
max_text_length
:
100
character_dict_path
:
ppocr/utils/ppocr_keys_v1.txt
use_space_char
:
True
gtc_encode
:
NRTRLabelEncode
-
RecResizeImg
:
image_shape
:
[
3
,
48
,
320
]
eval_mode
:
True
-
KeepKeys
:
keep_keys
:
-
image
...
...
ppocr/data/imaug/__init__.py
浏览文件 @
7e0c8aea
...
...
@@ -73,7 +73,7 @@ def create_operators(op_param_list, global_config=None):
dict
)
and
len
(
operator
)
==
1
,
"yaml format error"
op_name
=
list
(
operator
)[
0
]
param
=
{}
if
operator
[
op_name
]
is
None
else
operator
[
op_name
]
if
global_config
is
not
None
and
"max_text_length"
not
in
param
:
if
global_config
is
not
None
:
param
.
update
(
global_config
)
op
=
eval
(
op_name
)(
**
param
)
ops
.
append
(
op
)
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录