From 87b72c2d2591abd76fc32ea298dd164b4076cb02 Mon Sep 17 00:00:00 2001 From: Jiawei Wang Date: Mon, 30 Mar 2020 20:50:42 +0800 Subject: [PATCH] Update README.md --- README.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index 297a6cf7..73f89a83 100644 --- a/README.md +++ b/README.md @@ -18,19 +18,19 @@

Motivation

-We consider deploying deep learning inference service online to be a user-facing application in the future. **The goal of this project**: When you have trained a deep neural net with [Paddle](https://github.com/PaddlePaddle/Paddle), you can put the model online without much effort. A demo of serving is as follows: +We consider deploying deep learning inference service online to be a user-facing application in the future. **The goal of this project**: When you have trained a deep neural net with [Paddle](https://github.com/PaddlePaddle/Paddle), you are also capable to deploy the model online easily. A demo of serving is as follows:

Some Key Features

-- Integrate with Paddle training pipeline seemlessly, most paddle models can be deployed **with one line command**. +- Integrate with Paddle training pipeline seamlessly, most paddle models can be deployed **with one line command**. - **Industrial serving features** supported, such as models management, online loading, online A/B testing etc. -- **Distributed Key-Value indexing** supported that is especially useful for large scale sparse features as model inputs. -- **Highly concurrent and efficient communication** between clients and servers. -- **Multiple programming languages** supported on client side, such as Golang, C++ and python -- **Extensible framework design** that can support model serving beyond Paddle. +- **Distributed Key-Value indexing** supported which is especially useful for large scale sparse features as model inputs. +- **Highly concurrent and efficient communication** between clients and servers supported. +- **Multiple programming languages** supported on client side, such as Golang, C++ and python. +- **Extensible framework design** which can support model serving beyond Paddle.

Installation

-- GitLab