Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
PaddlePaddle
PaddleX
提交
be8c86a1
P
PaddleX
项目概览
PaddlePaddle
/
PaddleX
通知
138
Star
4
Fork
0
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
43
列表
看板
标记
里程碑
合并请求
5
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
P
PaddleX
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
43
Issue
43
列表
看板
标记
里程碑
合并请求
5
合并请求
5
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
提交
be8c86a1
编写于
8月 27, 2020
作者:
S
syyxsxx
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
add namespace InferenceEngine::
上级
4824363c
变更
3
隐藏空白更改
内联
并排
Showing
3 changed file
with
5 addition
and
3 deletion
+5
-3
deploy/openvino/src/paddlex.cpp
deploy/openvino/src/paddlex.cpp
+1
-1
deploy/raspberry/include/paddlex/transforms.h
deploy/raspberry/include/paddlex/transforms.h
+1
-1
deploy/raspberry/src/paddlex.cpp
deploy/raspberry/src/paddlex.cpp
+3
-1
未找到文件。
deploy/openvino/src/paddlex.cpp
浏览文件 @
be8c86a1
...
...
@@ -222,7 +222,7 @@ bool Model::predict(const cv::Mat& im, SegResult* result) {
//
infer_request
.
Infer
();
OInferenceEngine
::
utputsDataMap
out_map
=
network_
.
getOutputsInfo
();
InferenceEngine
::
O
utputsDataMap
out_map
=
network_
.
getOutputsInfo
();
auto
iter
=
out_map
.
begin
();
iter
++
;
std
::
string
output_name_score
=
iter
->
first
;
...
...
deploy/raspberry/include/paddlex/transforms.h
浏览文件 @
be8c86a1
...
...
@@ -49,7 +49,7 @@ class ImageBlob {
// Resize scale
float
scale
=
1.0
;
// Buffer for image data after preprocessing
std
::
unique_ptr
<
Tensor
>
input_tensor_
;
std
::
unique_ptr
<
paddle
::
lite_api
::
Tensor
>
input_tensor_
;
void
clear
()
{
im_size_before_resize_
.
clear
();
...
...
deploy/raspberry/src/paddlex.cpp
浏览文件 @
be8c86a1
...
...
@@ -26,7 +26,9 @@ void Model::create_predictor(const std::string& model_dir,
config
.
set_model_from_file
(
model_dir
);
config
.
set_threads
(
thread_num
);
load_config
(
cfg_dir
);
predictor_
=
CreatePaddlePredictor
<
paddle
::
lite_api
::
MobileConfig
>
(
config
);
predictor_
=
paddle
::
lite_api
::
CreatePaddlePredictor
<
paddle
::
lite_api
::
MobileConfig
>
(
config
);
}
bool
Model
::
load_config
(
const
std
::
string
&
cfg_dir
)
{
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录