README.md 536 字节
Newer Older
Y
Yan Chunwei 已提交
1 2 3 4
# Embed Paddle Inference in Your Application

Paddle inference offers the APIs in `C` and `C++` languages.

5
You can easily deploy a model trained by Paddle following the steps as below:
Y
Yan Chunwei 已提交
6 7 8 9

1. Optimize the native model;
2. Write some codes for deployment.

10
## The APIs
Y
Yan Chunwei 已提交
11

12 13
All the released APIs are located in the `paddle_inference_api.h` header file. 
The stable APIs are wrapped by `namespace paddle`, the unstable APIs are protected by `namespace paddle::contrib`.
Y
Yan Chunwei 已提交
14 15 16 17

## Write some codes

Read `paddle_inference_api.h` for more information.