Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
PaddlePaddle
PaddleOCR
提交
9ea8a47c
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看板
提交
9ea8a47c
编写于
12月 18, 2021
作者:
文幕地方
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
support eval in less det resule
上级
a5dbd8bb
变更
1
隐藏空白更改
内联
并排
Showing
1 changed file
with
6 addition
and
5 deletion
+6
-5
ppstructure/vqa/helper/eval_with_label_end2end.py
ppstructure/vqa/helper/eval_with_label_end2end.py
+6
-5
未找到文件。
ppstructure/vqa/helper/eval_with_label_end2end.py
浏览文件 @
9ea8a47c
...
@@ -15,13 +15,12 @@
...
@@ -15,13 +15,12 @@
import
os
import
os
import
re
import
re
import
sys
import
sys
# import Polygon
import
shapely
import
shapely
from
shapely.geometry
import
Polygon
from
shapely.geometry
import
Polygon
import
numpy
as
np
import
numpy
as
np
from
collections
import
defaultdict
from
collections
import
defaultdict
import
operator
import
operator
import
editdistance
import
Levenshtein
import
argparse
import
argparse
import
json
import
json
import
copy
import
copy
...
@@ -95,7 +94,7 @@ def ed(args, str1, str2):
...
@@ -95,7 +94,7 @@ def ed(args, str1, str2):
if
args
.
ignore_case
:
if
args
.
ignore_case
:
str1
=
str1
.
lower
()
str1
=
str1
.
lower
()
str2
=
str2
.
lower
()
str2
=
str2
.
lower
()
return
editdistance
.
eval
(
str1
,
str2
)
return
Levenshtein
.
distance
(
str1
,
str2
)
def
convert_bbox_to_polygon
(
bbox
):
def
convert_bbox_to_polygon
(
bbox
):
...
@@ -115,7 +114,9 @@ def eval_e2e(args):
...
@@ -115,7 +114,9 @@ def eval_e2e(args):
# pred
# pred
dt_results
=
parse_ser_results_fp
(
args
.
pred_json_path
,
"pred"
,
dt_results
=
parse_ser_results_fp
(
args
.
pred_json_path
,
"pred"
,
args
.
ignore_background
)
args
.
ignore_background
)
assert
set
(
gt_results
.
keys
())
==
set
(
dt_results
.
keys
())
# print(gt_results.keys())
# print(dt_results.keys())
# assert set(gt_results.keys()) == set(dt_results.keys())
iou_thresh
=
args
.
iou_thres
iou_thresh
=
args
.
iou_thres
num_gt_chars
=
0
num_gt_chars
=
0
...
@@ -124,7 +125,7 @@ def eval_e2e(args):
...
@@ -124,7 +125,7 @@ def eval_e2e(args):
hit
=
0
hit
=
0
ed_sum
=
0
ed_sum
=
0
for
img_name
in
g
t_results
:
for
img_name
in
d
t_results
:
gt_info
=
gt_results
[
img_name
]
gt_info
=
gt_results
[
img_name
]
gt_count
+=
len
(
gt_info
)
gt_count
+=
len
(
gt_info
)
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录