Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
PaddlePaddle
Serving
提交
35a02d7e
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看板
未验证
提交
35a02d7e
编写于
4月 09, 2020
作者:
D
Dong Daxiang
提交者:
GitHub
4月 09, 2020
浏览文件
操作
浏览文件
下载
差异文件
Merge pull request #428 from barrierye/fix-issue-426
issue fix
#426
上级
fa842ae6
42850f60
变更
2
隐藏空白更改
内联
并排
Showing
2 changed file
with
67 addition
and
16 deletion
+67
-16
python/examples/fit_a_line/README.md
python/examples/fit_a_line/README.md
+33
-8
python/examples/fit_a_line/README_CN.md
python/examples/fit_a_line/README_CN.md
+34
-8
未找到文件。
python/examples/fit_a_line/README.md
浏览文件 @
35a02d7e
# Fit a line
example, prediction through rpc servic
e
# Fit a line
prediction exampl
e
(
[
简体中文
](
./README_CN.md
)
|English)
## Start rpc service
```
shell
## Get data
```
shell
sh get_data.sh
```
## RPC service
### Start server
```
shell
python test_server.py uci_housing_model/
```
## Prediction
You can also start the default RPC service with the following line of code:
```
shell
python
-m
paddle_serving_server.serve
--model
uci_housing_model
--thread
10
--port
9393
```
### Client prediction
The
`paddlepaddle`
package is used in
`test_client.py`
, and you may need to download the corresponding package(
`pip install paddlepaddle`
).
```
shell
python test_client.py uci_housing_client/serving_client_conf.prototxt
```
## prediction through http service
Start a web service with default web service hosting modules
## HTTP service
### Start server
Start a web service with default web service hosting modules:
```
shell
python
-m
paddle_serving_server.
web_serve
--model
uci_housing_model/
--thread
10
--name
uci
--port
9393
--name
uci
python
-m
paddle_serving_server.
serve
--model
uci_housing_model
--thread
10
--port
9393
--name
uci
```
## Prediction through http post
### Client prediction
```
shell
curl
-H
"Content-Type:application/json"
-X
POST
-d
'{"x": [0.0137, -0.1136, 0.2553, -0.0692, 0.0582, -0.0727, -0.1583, -0.0584, 0.6283, 0.4919, 0.1856, 0.0795, -0.0332], "fetch":["price"]}'
http://127.0.0.1:9393/uci/prediction
```
python/examples/fit_a_line/README_CN.md
浏览文件 @
35a02d7e
# 线性回归
,RPC
预测服务示例
# 线性回归预测服务示例
(简体中文|
[
English
](
./README.md
)
)
## 开启RPC服务端
```
shell
## 获取数据
```
shell
sh get_data.sh
```
## RPC服务
### 开启服务端
```
shell
python test_server.py uci_housing_model/
```
## RPC预测
也可以通过下面的一行代码开启默认RPC服务:
```
shell
python
-m
paddle_serving_server.serve
--model
uci_housing_model
--thread
10
--port
9393
```
### 客户端预测
`test_client.py`
中使用了
`paddlepaddle`
包,需要进行下载(
`pip install paddlepaddle`
)。
```
shell
python test_client.py uci_housing_client/serving_client_conf.prototxt
```
## 开启HTTP服务端
Start a web service with default web service hosting modules
## HTTP服务
### 开启服务端
通过下面的一行代码开启默认web服务:
```
shell
python
-m
paddle_serving_server.
web_serve
--model
uci_housing_model/
--thread
10
--name
uci
--port
9393
--name
uci
python
-m
paddle_serving_server.
serve
--model
uci_housing_model
--thread
10
--port
9393
--name
uci
```
## HTTP预测
### 客户端预测
```
shell
curl
-H
"Content-Type:application/json"
-X
POST
-d
'{"x": [0.0137, -0.1136, 0.2553, -0.0692, 0.0582, -0.0727, -0.1583, -0.0584, 0.6283, 0.4919, 0.1856, 0.0795, -0.0332], "fetch":["price"]}'
http://127.0.0.1:9393/uci/prediction
```
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录