Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
PaddlePaddle
Serving
提交
e4e56909
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看板
提交
e4e56909
编写于
9月 27, 2019
作者:
X
xulongteng
浏览文件
操作
浏览文件
下载
差异文件
Merge remote-tracking branch 'upstream/develop' into bert
上级
1c257ead
a13133d2
变更
5
隐藏空白更改
内联
并排
Showing
5 changed file
with
34 addition
and
1 deletion
+34
-1
cube/cube-api/include/cube_api.h
cube/cube-api/include/cube_api.h
+5
-0
cube/cube-api/include/meta.h
cube/cube-api/include/meta.h
+14
-0
cube/cube-api/src/cube_api.cpp
cube/cube-api/src/cube_api.cpp
+10
-0
cube/cube-api/src/meta.cpp
cube/cube-api/src/meta.cpp
+4
-0
doc/CTR_PREDICTION.md
doc/CTR_PREDICTION.md
+1
-1
未找到文件。
cube/cube-api/include/cube_api.h
浏览文件 @
e4e56909
...
...
@@ -18,7 +18,12 @@
#include <string>
#include <vector>
#ifdef BCLOUD
#include "baidu/rpc/server.h"
#else
#include "brpc/server.h"
#endif
#include "cube/cube-api/cube.pb.h"
#include "cube/cube-api/include/meta.h"
...
...
cube/cube-api/include/meta.h
浏览文件 @
e4e56909
...
...
@@ -19,11 +19,25 @@
#include <unordered_map>
#include <vector>
#ifdef BCLOUD
#include "baidu/rpc/channel.h"
#include "baidu/rpc/parallel_channel.h"
#include "rapidjson/document.h"
#else
#include "brpc/channel.h"
#include "brpc/parallel_channel.h"
#include "butil/third_party/rapidjson/document.h"
#endif
#include "bvar/bvar.h"
#ifdef BCLOUD
namespace
brpc
=
baidu
::
rpc
;
#ifndef BUTIL_RAPIDJSON_NAMESPACE
#define BUTIL_RAPIDJSON_NAMESPACE RAPIDJSON_NAMESPACE
#endif
#endif
namespace
rec
{
namespace
mcube
{
...
...
cube/cube-api/src/cube_api.cpp
浏览文件 @
e4e56909
...
...
@@ -13,8 +13,14 @@
// limitations under the License.
#include "cube/cube-api/include/cube_api.h"
#ifdef BCLOUD
#include <baidu/rpc/channel.h>
#include <baidu/rpc/parallel_channel.h>
#else
#include <brpc/channel.h>
#include <brpc/parallel_channel.h>
#endif
#include <google/protobuf/descriptor.h>
#include "cube/cube-api/include/cube_api_bvar.h"
...
...
@@ -25,6 +31,10 @@ namespace {
static
::
rec
::
mcube
::
CubeAPI
*
g_ins
=
NULL
;
}
#ifdef BCLOUD
namespace
brpc
=
baidu
::
rpc
;
#endif
namespace
rec
{
namespace
mcube
{
...
...
cube/cube-api/src/meta.cpp
浏览文件 @
e4e56909
...
...
@@ -26,6 +26,10 @@ namespace {
static
::
rec
::
mcube
::
Meta
*
g_ins
=
NULL
;
}
#ifdef BCLOUD
namespace
brpc
=
baidu
::
rpc
;
#endif
namespace
rec
{
namespace
mcube
{
...
...
doc/CTR_PREDICTION.md
浏览文件 @
e4e56909
...
...
@@ -320,7 +320,7 @@ def prune_program():
### 2.5 裁剪过程串到一起
我们提供了完整的裁剪CTR预估模型的脚本文件save_program.py,同
[
CTR分布式训练
任务
](
doc/DISTRIBUTED_TRAINING_AND_SERVING.md
)
一起发布,可以在trainer和pserver容器的训练脚本目录下找到
我们提供了完整的裁剪CTR预估模型的脚本文件save_program.py,同
[
CTR分布式训练
和Serving流程化部署
](
https://github.com/PaddlePaddle/Serving/blob/master/doc/DEPLOY.md
)
一起发布,可以在trainer和pserver容器的训练脚本目录下找到,也可以在
[
这里
](
https://github.com/PaddlePaddle/Serving/tree/master/doc/resource
)
下载。
## 3. 整个预测计算流程
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录