Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
PaddlePaddle
Serving
提交
67efa2a1
S
Serving
项目概览
PaddlePaddle
/
Serving
大约 1 年 前同步成功
通知
186
Star
833
Fork
253
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
105
列表
看板
标记
里程碑
合并请求
10
Wiki
2
Wiki
分析
仓库
DevOps
项目成员
Pages
S
Serving
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
105
Issue
105
列表
看板
标记
里程碑
合并请求
10
合并请求
10
Pages
分析
分析
仓库分析
DevOps
Wiki
2
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
提交
67efa2a1
编写于
8月 01, 2019
作者:
W
wangguibao
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
CTR model serving
上级
6aadcac7
变更
3
隐藏空白更改
内联
并排
Showing
3 changed file
with
31 addition
and
9 deletion
+31
-9
demo-serving/op/ctr_prediction_op.cpp
demo-serving/op/ctr_prediction_op.cpp
+23
-7
predictor/framework/resource.cpp
predictor/framework/resource.cpp
+0
-1
predictor/framework/resource.h
predictor/framework/resource.h
+8
-1
未找到文件。
demo-serving/op/ctr_prediction_op.cpp
浏览文件 @
67efa2a1
...
...
@@ -15,6 +15,9 @@
#include "demo-serving/op/ctr_prediction_op.h"
#include <algorithm>
#include <string>
#if 1
#include <iomanip>
#endif
#include "cube/cube-api/include/cube_api.h"
#include "predictor/framework/infer.h"
#include "predictor/framework/kv_manager.h"
...
...
@@ -56,13 +59,6 @@ void fill_response_with_message(Response *response,
return
;
}
std
::
string
str_tolower
(
std
::
string
s
)
{
std
::
transform
(
s
.
begin
(),
s
.
end
(),
s
.
begin
(),
[](
unsigned
char
c
)
{
return
std
::
tolower
(
c
);
});
return
s
;
}
int
CTRPredictionOp
::
inference
()
{
const
Request
*
req
=
dynamic_cast
<
const
Request
*>
(
get_request_message
());
...
...
@@ -123,6 +119,26 @@ int CTRPredictionOp::inference() {
return
-
1
;
}
}
#if 1
for
(
int
i
=
0
;
i
<
keys
.
size
();
++
i
)
{
std
::
ostringstream
oss
;
oss
<<
keys
[
i
]
<<
": "
;
const
char
*
value
=
(
values
[
i
].
buff
.
data
());
if
(
values
[
i
].
buff
.
size
()
!=
sizeof
(
float
)
*
CTR_PREDICTION_EMBEDDING_SIZE
)
{
LOG
(
WARNING
)
<<
"Key "
<<
keys
[
i
]
<<
" has values less than "
<<
CTR_PREDICTION_EMBEDDING_SIZE
;
}
for
(
int
j
=
0
;
j
<
values
[
i
].
buff
.
size
();
++
j
)
{
oss
<<
std
::
hex
<<
std
::
uppercase
<<
std
::
setw
(
2
)
<<
std
::
setfill
(
'0'
)
<<
(
reinterpret_cast
<
int
>
(
value
[
j
])
&
0xff
);
}
LOG
(
INFO
)
<<
oss
.
str
().
c_str
();
}
#endif
}
// Sparse embeddings
...
...
predictor/framework/resource.cpp
浏览文件 @
67efa2a1
...
...
@@ -15,7 +15,6 @@
#include "predictor/framework/resource.h"
#include <string>
#include "predictor/common/inner_common.h"
#include "predictor/framework/infer.h"
#include "predictor/framework/kv_manager.h"
namespace
baidu
{
namespace
paddle_serving
{
...
...
predictor/framework/resource.h
浏览文件 @
67efa2a1
...
...
@@ -18,6 +18,7 @@
#include "cube/cube-api/include/cube_api.h"
#include "kvdb/paddle_rocksdb.h"
#include "predictor/common/inner_common.h"
#include "predictor/framework/infer.h"
#include "predictor/framework/memory.h"
namespace
baidu
{
...
...
@@ -37,7 +38,13 @@ struct DynamicResource {
class
Resource
{
public:
Resource
()
{}
Resource
()
{
// Reference InferManager::instance() explicitly, to make sure static
// instance of InferManager is constructed before that of Resource, and
// destruct after that of Resource
// See https://stackoverflow.com/a/335746/1513460
InferManager
::
instance
();
}
~
Resource
()
{
finalize
();
}
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录