Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
weixin_41840029
PaddleOCR
提交
106d1953
P
PaddleOCR
项目概览
weixin_41840029
/
PaddleOCR
与 Fork 源项目一致
Fork自
PaddlePaddle / PaddleOCR
通知
1
Star
1
Fork
0
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
0
列表
看板
标记
里程碑
合并请求
0
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
P
PaddleOCR
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
0
Issue
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
提交
106d1953
编写于
10月 27, 2021
作者:
L
LDOUBLEV
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
rename ptdn as test_tipc
上级
dbb6999d
变更
31
隐藏空白更改
内联
并排
Showing
31 changed file
with
3 addition
and
1 deletion
+3
-1
test_tipc/common_func.sh
test_tipc/common_func.sh
+0
-0
test_tipc/compare_results.py
test_tipc/compare_results.py
+2
-0
test_tipc/configs/det_mv3_db.yml
test_tipc/configs/det_mv3_db.yml
+0
-0
test_tipc/configs/det_r50_vd_db.yml
test_tipc/configs/det_r50_vd_db.yml
+0
-0
test_tipc/configs/ppocr_det_mobile_params.txt
test_tipc/configs/ppocr_det_mobile_params.txt
+0
-0
test_tipc/configs/ppocr_det_server_params.txt
test_tipc/configs/ppocr_det_server_params.txt
+0
-0
test_tipc/configs/ppocr_rec_mobile_params.txt
test_tipc/configs/ppocr_rec_mobile_params.txt
+0
-0
test_tipc/configs/ppocr_rec_server_params.txt
test_tipc/configs/ppocr_rec_server_params.txt
+0
-0
test_tipc/configs/ppocr_sys_mobile_params.txt
test_tipc/configs/ppocr_sys_mobile_params.txt
+0
-0
test_tipc/configs/ppocr_sys_server_params.txt
test_tipc/configs/ppocr_sys_server_params.txt
+0
-0
test_tipc/configs/ppocrv2_det_mobile_params.txt
test_tipc/configs/ppocrv2_det_mobile_params.txt
+0
-0
test_tipc/configs/rec_icdar15_r34_train.yml
test_tipc/configs/rec_icdar15_r34_train.yml
+0
-0
test_tipc/docs/compare_cpp_right.png
test_tipc/docs/compare_cpp_right.png
+0
-0
test_tipc/docs/compare_cpp_wrong.png
test_tipc/docs/compare_cpp_wrong.png
+0
-0
test_tipc/docs/compare_right.png
test_tipc/docs/compare_right.png
+0
-0
test_tipc/docs/compare_wrong.png
test_tipc/docs/compare_wrong.png
+0
-0
test_tipc/docs/guide.png
test_tipc/docs/guide.png
+0
-0
test_tipc/docs/install.md
test_tipc/docs/install.md
+0
-0
test_tipc/docs/test.png
test_tipc/docs/test.png
+0
-0
test_tipc/docs/test_inference_cpp.md
test_tipc/docs/test_inference_cpp.md
+0
-0
test_tipc/docs/test_serving.md
test_tipc/docs/test_serving.md
+0
-0
test_tipc/docs/test_train_inference_python.md
test_tipc/docs/test_train_inference_python.md
+0
-0
test_tipc/prepare.sh
test_tipc/prepare.sh
+0
-0
test_tipc/readme.md
test_tipc/readme.md
+1
-1
test_tipc/results/cpp_ppocr_det_mobile_results_fp16.txt
test_tipc/results/cpp_ppocr_det_mobile_results_fp16.txt
+0
-0
test_tipc/results/cpp_ppocr_det_mobile_results_fp32.txt
test_tipc/results/cpp_ppocr_det_mobile_results_fp32.txt
+0
-0
test_tipc/results/python_ppocr_det_mobile_results_fp16.txt
test_tipc/results/python_ppocr_det_mobile_results_fp16.txt
+0
-0
test_tipc/results/python_ppocr_det_mobile_results_fp32.txt
test_tipc/results/python_ppocr_det_mobile_results_fp32.txt
+0
-0
test_tipc/test_inference_cpp.sh
test_tipc/test_inference_cpp.sh
+0
-0
test_tipc/test_serving.sh
test_tipc/test_serving.sh
+0
-0
test_tipc/test_train_inference_python.sh
test_tipc/test_train_inference_python.sh
+0
-0
未找到文件。
PTDN
/common_func.sh
→
test_tipc
/common_func.sh
浏览文件 @
106d1953
文件已移动
PTDN
/compare_results.py
→
test_tipc
/compare_results.py
浏览文件 @
106d1953
...
...
@@ -32,6 +32,7 @@ def run_shell_command(cmd):
else
:
return
None
def
parser_results_from_log_by_name
(
log_path
,
names_list
):
if
not
os
.
path
.
exists
(
log_path
):
raise
ValueError
(
"The log file {} does not exists!"
.
format
(
log_path
))
...
...
@@ -52,6 +53,7 @@ def parser_results_from_log_by_name(log_path, names_list):
parser_results
[
name
]
=
result
return
parser_results
def
load_gt_from_file
(
gt_file
):
if
not
os
.
path
.
exists
(
gt_file
):
raise
ValueError
(
"The log file {} does not exists!"
.
format
(
gt_file
))
...
...
PTDN
/configs/det_mv3_db.yml
→
test_tipc
/configs/det_mv3_db.yml
浏览文件 @
106d1953
文件已移动
PTDN
/configs/det_r50_vd_db.yml
→
test_tipc
/configs/det_r50_vd_db.yml
浏览文件 @
106d1953
文件已移动
PTDN
/configs/ppocr_det_mobile_params.txt
→
test_tipc
/configs/ppocr_det_mobile_params.txt
浏览文件 @
106d1953
文件已移动
PTDN
/configs/ppocr_det_server_params.txt
→
test_tipc
/configs/ppocr_det_server_params.txt
浏览文件 @
106d1953
文件已移动
PTDN
/configs/ppocr_rec_mobile_params.txt
→
test_tipc
/configs/ppocr_rec_mobile_params.txt
浏览文件 @
106d1953
文件已移动
PTDN
/configs/ppocr_rec_server_params.txt
→
test_tipc
/configs/ppocr_rec_server_params.txt
浏览文件 @
106d1953
文件已移动
PTDN
/configs/ppocr_sys_mobile_params.txt
→
test_tipc
/configs/ppocr_sys_mobile_params.txt
浏览文件 @
106d1953
文件已移动
PTDN
/configs/ppocr_sys_server_params.txt
→
test_tipc
/configs/ppocr_sys_server_params.txt
浏览文件 @
106d1953
文件已移动
PTDN
/configs/ppocrv2_det_mobile_params.txt
→
test_tipc
/configs/ppocrv2_det_mobile_params.txt
浏览文件 @
106d1953
文件已移动
PTDN
/configs/rec_icdar15_r34_train.yml
→
test_tipc
/configs/rec_icdar15_r34_train.yml
浏览文件 @
106d1953
文件已移动
PTDN
/docs/compare_cpp_right.png
→
test_tipc
/docs/compare_cpp_right.png
浏览文件 @
106d1953
文件已移动
PTDN
/docs/compare_cpp_wrong.png
→
test_tipc
/docs/compare_cpp_wrong.png
浏览文件 @
106d1953
文件已移动
PTDN
/docs/compare_right.png
→
test_tipc
/docs/compare_right.png
浏览文件 @
106d1953
文件已移动
PTDN
/docs/compare_wrong.png
→
test_tipc
/docs/compare_wrong.png
浏览文件 @
106d1953
文件已移动
PTDN
/docs/guide.png
→
test_tipc
/docs/guide.png
浏览文件 @
106d1953
文件已移动
PTDN
/docs/install.md
→
test_tipc
/docs/install.md
浏览文件 @
106d1953
文件已移动
PTDN
/docs/test.png
→
test_tipc
/docs/test.png
浏览文件 @
106d1953
文件已移动
PTDN
/docs/test_inference_cpp.md
→
test_tipc
/docs/test_inference_cpp.md
浏览文件 @
106d1953
文件已移动
PTDN
/docs/test_serving.md
→
test_tipc
/docs/test_serving.md
浏览文件 @
106d1953
文件已移动
PTDN
/docs/test_train_inference_python.md
→
test_tipc
/docs/test_train_inference_python.md
浏览文件 @
106d1953
文件已移动
PTDN
/prepare.sh
→
test_tipc
/prepare.sh
浏览文件 @
106d1953
文件已移动
PTDN
/readme.md
→
test_tipc
/readme.md
浏览文件 @
106d1953
...
...
@@ -69,7 +69,7 @@ PTDN/
├── ppocr_sys_server_params.txt
# 测试server版ppocr检测+识别模型串联的参数配置文件
├── ppocr_det_server_params.txt
# 测试server版ppocr检测模型的参数配置文件
├── ppocr_rec_server_params.txt
# 测试server版ppocr识别模型的参数配置文件
├── ...
├── ...
├── results/
# 预先保存的预测结果,用于和实际预测结果进行精读比对
├── python_ppocr_det_mobile_results_fp32.txt
# 预存的mobile版ppocr检测模型python预测fp32精度的结果
├── python_ppocr_det_mobile_results_fp16.txt
# 预存的mobile版ppocr检测模型python预测fp16精度的结果
...
...
PTDN
/results/cpp_ppocr_det_mobile_results_fp16.txt
→
test_tipc
/results/cpp_ppocr_det_mobile_results_fp16.txt
浏览文件 @
106d1953
文件已移动
PTDN
/results/cpp_ppocr_det_mobile_results_fp32.txt
→
test_tipc
/results/cpp_ppocr_det_mobile_results_fp32.txt
浏览文件 @
106d1953
文件已移动
PTDN
/results/python_ppocr_det_mobile_results_fp16.txt
→
test_tipc
/results/python_ppocr_det_mobile_results_fp16.txt
浏览文件 @
106d1953
文件已移动
PTDN
/results/python_ppocr_det_mobile_results_fp32.txt
→
test_tipc
/results/python_ppocr_det_mobile_results_fp32.txt
浏览文件 @
106d1953
文件已移动
PTDN
/test_inference_cpp.sh
→
test_tipc
/test_inference_cpp.sh
浏览文件 @
106d1953
文件已移动
PTDN
/test_serving.sh
→
test_tipc
/test_serving.sh
浏览文件 @
106d1953
文件已移动
PTDN
/test_train_inference_python.sh
→
test_tipc
/test_train_inference_python.sh
浏览文件 @
106d1953
文件已移动
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录