Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
PaddlePaddle
PaddleOCR
提交
6808c9f2
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看板
体验新版 GitCode,发现更多精彩内容 >>
提交
6808c9f2
编写于
11月 18, 2021
作者:
M
MissPenguin
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
fix
上级
5346e05d
变更
2
隐藏空白更改
内联
并排
Showing
2 changed file
with
13 addition
and
13 deletion
+13
-13
test_tipc/docs/test_inference_cpp.md
test_tipc/docs/test_inference_cpp.md
+3
-3
test_tipc/readme.md
test_tipc/readme.md
+10
-10
未找到文件。
test_tipc/docs/test_inference_cpp.md
浏览文件 @
6808c9f2
...
...
@@ -20,12 +20,12 @@ C++预测功能测试的主程序为`test_inference_cpp.sh`,可以测试基于
先运行
`prepare.sh`
准备数据和模型,然后运行
`test_inference_cpp.sh`
进行测试,最终在
```test_tipc/output```
目录下生成
`cpp_infer_*.log`
后缀的日志文件。
```
shell
bash test_tipc/prepare.sh ./test_tipc/configs/
ppocr_det_mobile
/model_linux_gpu_normal_normal_infer_cpp_linux_gpu_cpu.txt
"cpp_infer"
bash test_tipc/prepare.sh ./test_tipc/configs/
ch_ppocr_mobile_v2.0_det
/model_linux_gpu_normal_normal_infer_cpp_linux_gpu_cpu.txt
"cpp_infer"
# 用法1:
bash test_tipc/test_inference_cpp.sh test_tipc/configs/
ppocr_det_mobile
/model_linux_gpu_normal_normal_infer_cpp_linux_gpu_cpu.txt
bash test_tipc/test_inference_cpp.sh test_tipc/configs/
ch_ppocr_mobile_v2.0_det
/model_linux_gpu_normal_normal_infer_cpp_linux_gpu_cpu.txt
# 用法2: 指定GPU卡预测,第三个传入参数为GPU卡号
bash test_tipc/test_inference_cpp.sh test_tipc/configs/
ppocr_det_mobile
/model_linux_gpu_normal_normal_infer_cpp_linux_gpu_cpu.txt
'1'
bash test_tipc/test_inference_cpp.sh test_tipc/configs/
ch_ppocr_mobile_v2.0_det
/model_linux_gpu_normal_normal_infer_cpp_linux_gpu_cpu.txt
'1'
```
运行预测指令后,在
`test_tipc/output`
文件夹下自动会保存运行日志,包括以下文件:
...
...
test_tipc/readme.md
浏览文件 @
6808c9f2
...
...
@@ -57,7 +57,7 @@
## 3.
一键测试工具使用
## 3.
测试工具简介
### 目录介绍
```
shell
...
...
@@ -77,10 +77,10 @@ test_tipc/
├── ...
├── ...
├── results/
# 预先保存的预测结果,用于和实际预测结果进行精读比对
├── python_
ch_ppocr_mobile_v2.0_det
_results_fp32.txt
# 预存的mobile版ppocr检测模型python预测fp32精度的结果
├── python_
ch_ppocr_mobile_v2.0_det
_results_fp16.txt
# 预存的mobile版ppocr检测模型python预测fp16精度的结果
├── cpp_
ch_ppocr_mobile_v2.0_det
_results_fp32.txt
# 预存的mobile版ppocr检测模型c++预测的fp32精度的结果
├── cpp_
ch_ppocr_mobile_v2.0_det
_results_fp16.txt
# 预存的mobile版ppocr检测模型c++预测的fp16精度的结果
├── python_
ppocr_det_mobile
_results_fp32.txt
# 预存的mobile版ppocr检测模型python预测fp32精度的结果
├── python_
ppocr_det_mobile
_results_fp16.txt
# 预存的mobile版ppocr检测模型python预测fp16精度的结果
├── cpp_
ppocr_det_mobile
_results_fp32.txt
# 预存的mobile版ppocr检测模型c++预测的fp32精度的结果
├── cpp_
ppocr_det_mobile
_results_fp16.txt
# 预存的mobile版ppocr检测模型c++预测的fp16精度的结果
├── ...
├── prepare.sh
# 完成test_*.sh运行所需要的数据和模型下载
├── test_train_inference_python.sh
# 测试python训练预测的主程序
...
...
@@ -92,7 +92,7 @@ test_tipc/
```
### 配置文件命名规范
在
`configs`
目录下,
按模型名称划分为子目录
,子目录中存放所有该模型测试需要用到的配置文件,配置文件的命名遵循如下规范:
在
`configs`
目录下,
**按模型名称划分为子目录**
,子目录中存放所有该模型测试需要用到的配置文件,配置文件的命名遵循如下规范:
1.
基础训练预测配置简单命名为:
`train_infer_python.txt`
,表示
**Linux环境下单机、不使用混合精度训练+python预测**
,其完整命名对应
`train_linux_gpu_normal_normal_infer_python_linux_gpu_cpu.txt`
,由于本配置文件使用频率较高,这里进行了名称简化。
...
...
@@ -100,10 +100,10 @@ test_tipc/
3.
仅预测的配置(如serving、lite等)命名格式:
`model_训练硬件环境(linux_gpu/linux_dcu/…)_是否多机(fleet/normal)_是否混合精度(amp/normal)_(infer/lite/serving/js)_语言(cpp/python/java)_预测硬件环境(linux_gpu/mac/jetson/opencl_arm_gpu/...).txt`
,即,与2相比,仅第一个字段从train换为model,测试时模型直接下载获取,这里的“训练硬件环境”表示所测试的模型是在哪种环境下训练得到的。
根据上述命名规范,可以直接从
配置文件名看出对应的测试场景和功能
。
根据上述命名规范,可以直接从
子目录名称和配置文件名找到需要测试的场景和功能对应的配置文件
。
### 测试流程
使用本工具,可以测试不同功能的支持情况,以及预测结果是否对齐,测试流程如下:
### 测试流程
概述
使用本工具,可以测试不同功能的支持情况,以及预测结果是否对齐,测试流程
概括
如下:
<div
align=
"center"
>
<img
src=
"docs/test.png"
width=
"800"
>
</div>
...
...
@@ -120,7 +120,7 @@ test_tipc/
-
`test_paddle2onnx.sh`
:测试Paddle2ONNX的模型转化功能,并验证正确性。
<a
name=
"more"
></a>
###
#
更多教程
### 更多教程
各功能测试中涉及混合精度、裁剪、量化等训练相关,及mkldnn、Tensorrt等多种预测相关参数配置,请点击下方相应链接了解更多细节和使用教程:
[
test_train_inference_python 使用
](
docs/test_train_inference_python.md
)
[
test_inference_cpp 使用
](
docs/test_inference_cpp.md
)
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录