Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
PaddlePaddle
Serving
提交
88034630
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看板
未验证
提交
88034630
编写于
2月 22, 2021
作者:
J
Jiawei Wang
提交者:
GitHub
2月 22, 2021
浏览文件
操作
浏览文件
下载
差异文件
Merge pull request #1059 from HexToString/fix_encoding_bug
fix doc and delete unused file
上级
cee1ad71
db0822c6
变更
4
隐藏空白更改
内联
并排
Showing
4 changed file
with
2 addition
and
47 deletion
+2
-47
doc/GRPC_IMPL_CN.md
doc/GRPC_IMPL_CN.md
+0
-12
doc/JAVA_SDK.md
doc/JAVA_SDK.md
+1
-1
doc/JAVA_SDK_CN.md
doc/JAVA_SDK_CN.md
+1
-1
python/examples/fit_a_line/test_numpy_input_client.py
python/examples/fit_a_line/test_numpy_input_client.py
+0
-33
未找到文件。
doc/GRPC_IMPL_CN.md
浏览文件 @
88034630
...
...
@@ -115,24 +115,12 @@ python test_asyn_client.py
python test_batch_client.py
```
#### 通用 pb 预测
```
shell
python test_general_pb_client.py
```
#### 预测超时
```
shell
python test_timeout_client.py
```
#### List 输入
```
shell
python test_list_input_client.py
```
## 3.更多示例
详见
[
`python/examples/grpc_impl_example`
](
../python/examples/grpc_impl_example
)
下的示例文件。
doc/JAVA_SDK.md
浏览文件 @
88034630
...
...
@@ -18,7 +18,7 @@ The following table shows compatibilities between Paddle Serving Server and Java
| Paddle Serving Server version | Java SDK version |
| :---------------------------: | :--------------: |
| 0.
3.2
| 0.0.1 |
| 0.
5.0
| 0.0.1 |
1.
Directly use the provided Java SDK as the client for prediction
### Install Java SDK
...
...
doc/JAVA_SDK_CN.md
浏览文件 @
88034630
...
...
@@ -17,7 +17,7 @@ Paddle Serving 提供了 Java SDK,支持 Client 端用 Java 语言进行预测
| Paddle Serving Server version | Java SDK version |
| :---------------------------: | :--------------: |
| 0.
3.2
| 0.0.1 |
| 0.
5.0
| 0.0.1 |
1.
直接使用提供的Java SDK作为Client进行预测
### 安装
...
...
python/examples/fit_a_line/test_numpy_input_client.py
已删除
100644 → 0
浏览文件 @
cee1ad71
# Copyright (c) 2020 PaddlePaddle Authors. All Rights Reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
# pylint: disable=doc-string-missing
from
paddle_serving_client
import
Client
import
numpy
as
np
import
sys
client
=
Client
()
client
.
load_client_config
(
sys
.
argv
[
1
])
client
.
connect
([
"127.0.0.1:9393"
])
import
paddle
test_reader
=
paddle
.
batch
(
paddle
.
reader
.
shuffle
(
paddle
.
dataset
.
uci_housing
.
test
(),
buf_size
=
500
),
batch_size
=
1
)
for
data
in
test_reader
():
fetch_map
=
client
.
predict
(
feed
=
{
"x"
:
np
.
array
(
data
[
0
][
0
])},
fetch
=
[
"price"
])
print
(
"{} {}"
.
format
(
fetch_map
[
"price"
][
0
][
0
],
data
[
0
][
1
][
0
]))
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录