Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
PaddlePaddle
Serving
提交
fda8ed0b
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看板
提交
fda8ed0b
编写于
8月 01, 2019
作者:
X
xulongteng
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
debug ctr demo with cube
上级
c4dc6c88
变更
5
隐藏空白更改
内联
并排
Showing
5 changed file
with
1024 addition
and
21 deletion
+1024
-21
demo-client/data/ctr_prediction/data.txt
demo-client/data/ctr_prediction/data.txt
+1000
-0
demo-serving/conf/cube.conf
demo-serving/conf/cube.conf
+15
-0
demo-serving/conf/gflags.conf
demo-serving/conf/gflags.conf
+1
-0
demo-serving/conf/resource.prototxt
demo-serving/conf/resource.prototxt
+1
-0
demo-serving/op/ctr_prediction_op.cpp
demo-serving/op/ctr_prediction_op.cpp
+7
-21
未找到文件。
demo-client/data/ctr_prediction/data.txt
0 → 100644
浏览文件 @
fda8ed0b
因为 它太大了无法显示 source diff 。你可以改为
查看blob
。
demo-serving/conf/cube.conf
0 → 100644
浏览文件 @
fda8ed0b
[{
"dict_name"
:
"dict"
,
"shard"
:
2
,
"dup"
:
1
,
"timeout"
:
200
,
"retry"
:
3
,
"backup_request"
:
100
,
"type"
:
"ipport_list"
,
"load_balancer"
:
"rr"
,
"nodes"
: [{
"ipport_list"
:
"list://xxx.xxx.xxx.xxx:8000"
},{
"ipport_list"
:
"list://xxx.xxx.xxx.xxx:8000"
}]
}]
demo-serving/conf/gflags.conf
浏览文件 @
fda8ed0b
--
enable_model_toolkit
--
enable_cube
=
false
demo-serving/conf/resource.prototxt
浏览文件 @
fda8ed0b
model_toolkit_path: "./conf/"
model_toolkit_file: "model_toolkit.prototxt"
cube_config_file: "./conf/cube.conf"
demo-serving/op/ctr_prediction_op.cpp
浏览文件 @
fda8ed0b
...
...
@@ -15,6 +15,7 @@
#include "demo-serving/op/ctr_prediction_op.h"
#include <algorithm>
#include <string>
#include "cube/cube-api/include/cube_api.h"
#include "predictor/framework/infer.h"
#include "predictor/framework/memory.h"
...
...
@@ -41,12 +42,8 @@ const int CTR_PREDICTION_DENSE_SLOT_ID = 26;
const
int
CTR_PREDICTION_DENSE_DIM
=
13
;
const
int
CTR_PREDICTION_EMBEDDING_SIZE
=
10
;
#if 1
struct
CubeValue
{
int
error
;
std
::
string
buff
;
};
#endif
// dict name
const
char
dict_name
[]
=
"dict"
;
void
fill_response_with_message
(
Response
*
response
,
int
err_code
,
...
...
@@ -83,8 +80,8 @@ int CTRPredictionOp::inference() {
}
// Query cube API for sparse embeddings
std
::
vector
<
int64_t
>
keys
;
std
::
vector
<
CubeValue
>
values
;
std
::
vector
<
u
int64_t
>
keys
;
std
::
vector
<
rec
::
mcube
::
CubeValue
>
values
;
for
(
uint32_t
si
=
0
;
si
<
sample_size
;
++
si
)
{
const
CTRReqInstance
&
req_instance
=
req
->
instances
(
si
);
...
...
@@ -100,24 +97,13 @@ int CTRPredictionOp::inference() {
}
}
#if 0
mCube::CubeAPI* cube = CubeAPI::instance();
int ret = cube->seek(keys, values);
rec
::
mcube
::
CubeAPI
*
cube
=
rec
::
mcube
::
CubeAPI
::
instance
();
int
ret
=
cube
->
seek
(
dict_name
,
keys
,
&
values
);
if
(
ret
!=
0
)
{
fill_response_with_message
(
res
,
-
1
,
"Query cube for embeddings error"
);
LOG
(
ERROR
)
<<
"Query cube for embeddings error"
;
return
-
1
;
}
#else
float
buff
[
CTR_PREDICTION_EMBEDDING_SIZE
]
=
{
0.01
,
0.02
,
0.03
,
0.04
,
0.05
,
0.06
,
0.07
,
0.08
,
0.09
,
0.00
};
for
(
int
i
=
0
;
i
<
keys
.
size
();
++
i
)
{
CubeValue
value
;
value
.
error
=
0
;
value
.
buff
=
std
::
string
(
reinterpret_cast
<
char
*>
(
buff
),
sizeof
(
buff
));
values
.
push_back
(
value
);
}
#endif
// Sparse embeddings
for
(
int
i
=
0
;
i
<
CTR_PREDICTION_SPARSE_SLOTS
;
++
i
)
{
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录