Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
PaddlePaddle
PaddleOCR
提交
6e0a3fd6
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看板
未验证
提交
6e0a3fd6
编写于
7月 05, 2022
作者:
D
Double_V
提交者:
GitHub
7月 05, 2022
浏览文件
操作
浏览文件
下载
差异文件
Merge pull request #6766 from LDOUBLEV/dyg_pts
fix kl js loss
上级
5cd04ae9
bedd89f9
变更
5
隐藏空白更改
内联
并排
Showing
5 changed file
with
18 addition
and
10 deletion
+18
-10
configs/det/ch_PP-OCRv2/ch_PP-OCRv2_det_dml.yml
configs/det/ch_PP-OCRv2/ch_PP-OCRv2_det_dml.yml
+1
-1
configs/det/ch_PP-OCRv3/ch_PP-OCRv3_det_dml.yml
configs/det/ch_PP-OCRv3/ch_PP-OCRv3_det_dml.yml
+1
-1
deploy/lite/crnn_process.cc
deploy/lite/crnn_process.cc
+2
-1
deploy/lite/ocr_db_crnn.cc
deploy/lite/ocr_db_crnn.cc
+1
-1
ppocr/losses/basic_loss.py
ppocr/losses/basic_loss.py
+13
-6
未找到文件。
configs/det/ch_PP-OCRv2/ch_PP-OCRv2_det_dml.yml
浏览文件 @
6e0a3fd6
...
...
@@ -65,7 +65,7 @@ Loss:
-
[
"
Student"
,
"
Teacher"
]
maps_name
:
"
thrink_maps"
weight
:
1.0
act
:
"
softmax"
# act: None
model_name_pairs
:
[
"
Student"
,
"
Teacher"
]
key
:
maps
-
DistillationDBLoss
:
...
...
configs/det/ch_PP-OCRv3/ch_PP-OCRv3_det_dml.yml
浏览文件 @
6e0a3fd6
...
...
@@ -60,7 +60,7 @@ Loss:
-
[
"
Student"
,
"
Student2"
]
maps_name
:
"
thrink_maps"
weight
:
1.0
act
:
"
softmax"
# act: None
model_name_pairs
:
[
"
Student"
,
"
Student2"
]
key
:
maps
-
DistillationDBLoss
:
...
...
deploy/lite/crnn_process.cc
浏览文件 @
6e0a3fd6
...
...
@@ -34,12 +34,13 @@ cv::Mat CrnnResizeImg(cv::Mat img, float wh_ratio, int rec_image_height) {
resize_w
=
imgW
;
else
resize_w
=
int
(
ceilf
(
imgH
*
ratio
));
cv
::
Mat
resize_img
;
cv
::
resize
(
img
,
resize_img
,
cv
::
Size
(
resize_w
,
imgH
),
0.
f
,
0.
f
,
cv
::
INTER_LINEAR
);
cv
::
copyMakeBorder
(
resize_img
,
resize_img
,
0
,
0
,
0
,
int
(
imgW
-
resize_img
.
cols
),
cv
::
BORDER_CONSTANT
,
{
127
,
127
,
127
});
return
resize_img
;
}
std
::
vector
<
std
::
string
>
ReadDict
(
std
::
string
path
)
{
...
...
deploy/lite/ocr_db_crnn.cc
浏览文件 @
6e0a3fd6
...
...
@@ -474,7 +474,7 @@ void system(char **argv){
std
::
vector
<
double
>
rec_times
;
RunRecModel
(
boxes
,
srcimg
,
rec_predictor
,
rec_text
,
rec_text_score
,
charactor_dict
,
cls_predictor
,
use_direction_classify
,
&
rec_times
);
charactor_dict
,
cls_predictor
,
use_direction_classify
,
&
rec_times
,
rec_image_height
);
//// visualization
auto
img_vis
=
Visualization
(
srcimg
,
boxes
);
...
...
ppocr/losses/basic_loss.py
浏览文件 @
6e0a3fd6
...
...
@@ -57,17 +57,24 @@ class CELoss(nn.Layer):
class
KLJSLoss
(
object
):
def
__init__
(
self
,
mode
=
'kl'
):
assert
mode
in
[
'kl'
,
'js'
,
'KL'
,
'JS'
],
"mode can only be one of ['kl', '
js', 'KL
', 'JS']"
],
"mode can only be one of ['kl', '
KL', 'js
', 'JS']"
self
.
mode
=
mode
def
__call__
(
self
,
p1
,
p2
,
reduction
=
"mean"
):
loss
=
paddle
.
multiply
(
p2
,
paddle
.
log
((
p2
+
1e-5
)
/
(
p1
+
1e-5
)
+
1e-5
))
if
self
.
mode
.
lower
()
==
"js"
:
if
self
.
mode
.
lower
()
==
'kl'
:
loss
=
paddle
.
multiply
(
p2
,
paddle
.
log
((
p2
+
1e-5
)
/
(
p1
+
1e-5
)
+
1e-5
))
loss
+=
paddle
.
multiply
(
p1
,
paddle
.
log
((
p1
+
1e-5
)
/
(
p2
+
1e-5
)
+
1e-5
))
loss
*=
0.5
elif
self
.
mode
.
lower
()
==
"js"
:
loss
=
paddle
.
multiply
(
p2
,
paddle
.
log
((
2
*
p2
+
1e-5
)
/
(
p1
+
p2
+
1e-5
)
+
1e-5
))
loss
+=
paddle
.
multiply
(
p1
,
paddle
.
log
((
p1
+
1e-5
)
/
(
p2
+
1e-5
)
+
1e-5
))
p1
,
paddle
.
log
((
2
*
p1
+
1e-5
)
/
(
p1
+
p2
+
1e-5
)
+
1e-5
))
loss
*=
0.5
else
:
raise
ValueError
(
"The mode.lower() if KLJSLoss should be one of ['kl', 'js']"
)
if
reduction
==
"mean"
:
loss
=
paddle
.
mean
(
loss
,
axis
=
[
1
,
2
])
elif
reduction
==
"none"
or
reduction
is
None
:
...
...
@@ -95,7 +102,7 @@ class DMLLoss(nn.Layer):
self
.
act
=
None
self
.
use_log
=
use_log
self
.
jskl_loss
=
KLJSLoss
(
mode
=
"
js
"
)
self
.
jskl_loss
=
KLJSLoss
(
mode
=
"
kl
"
)
def
_kldiv
(
self
,
x
,
target
):
eps
=
1.0e-10
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录