From 7043f03a94c996853933369828795097b2ffb8cf Mon Sep 17 00:00:00 2001 From: Jiawei Wang Date: Mon, 22 Feb 2021 19:44:59 +0800 Subject: [PATCH] Merge pull request #1059 from HexToString/fix_encoding_bug fix doc and delete unused file --- doc/GRPC_IMPL_CN.md | 12 ------- doc/JAVA_SDK.md | 2 +- doc/JAVA_SDK_CN.md | 2 +- .../fit_a_line/test_numpy_input_client.py | 33 ------------------- 4 files changed, 2 insertions(+), 47 deletions(-) delete mode 100644 python/examples/fit_a_line/test_numpy_input_client.py diff --git a/doc/GRPC_IMPL_CN.md b/doc/GRPC_IMPL_CN.md index 7cfa9d86..bac9caf7 100644 --- a/doc/GRPC_IMPL_CN.md +++ b/doc/GRPC_IMPL_CN.md @@ -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)下的示例文件。 diff --git a/doc/JAVA_SDK.md b/doc/JAVA_SDK.md index 01da7156..cb1d60bc 100644 --- a/doc/JAVA_SDK.md +++ b/doc/JAVA_SDK.md @@ -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 diff --git a/doc/JAVA_SDK_CN.md b/doc/JAVA_SDK_CN.md index 7033b960..333a29a6 100644 --- a/doc/JAVA_SDK_CN.md +++ b/doc/JAVA_SDK_CN.md @@ -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进行预测 ### 安装 diff --git a/python/examples/fit_a_line/test_numpy_input_client.py b/python/examples/fit_a_line/test_numpy_input_client.py deleted file mode 100644 index 8557ed09..00000000 --- a/python/examples/fit_a_line/test_numpy_input_client.py +++ /dev/null @@ -1,33 +0,0 @@ -# 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])) -- GitLab