README.md 6.6 KB
Newer Older
T
tianshuo78520a 已提交
1
 
1
123malin 已提交
2 3 4 5 6
<p align="center">
<img align="center" src="doc/imgs/logo.png", width=400>
<p>
    
--------------------------------------------------------------------------------
Z
zhangjinchao01 已提交
7

C
Cheerego 已提交
8
English | [简体中文](./README_cn.md)
G
gangliao 已提交
9

G
gangliao 已提交
10
[![Build Status](https://travis-ci.org/PaddlePaddle/Paddle.svg?branch=develop)](https://travis-ci.org/PaddlePaddle/Paddle)
11 12
[![Documentation Status](https://img.shields.io/badge/docs-latest-brightgreen.svg?style=flat)](http://www.paddlepaddle.org.cn/documentation/docs/en/1.8/beginners_guide/index_en.html)
[![Documentation Status](https://img.shields.io/badge/中文文档-最新-brightgreen.svg)](http://www.paddlepaddle.org.cn/documentation/docs/zh/1.8/beginners_guide/index_cn.html)
G
gangliao 已提交
13
[![Release](https://img.shields.io/github/release/PaddlePaddle/Paddle.svg)](https://github.com/PaddlePaddle/Paddle/releases)
L
liaogang 已提交
14 15
[![License](https://img.shields.io/badge/license-Apache%202-blue.svg)](LICENSE)

G
gangliao 已提交
16
Welcome to the PaddlePaddle GitHub.
E
emailweixu 已提交
17

M
Muennighoff 已提交
18 19
PaddlePaddle, as the only independent R&D deep learning platform in China, has been officially open-sourced to professional communities since 2016. It is an industrial platform with advanced technologies and rich features that cover core deep learning frameworks, basic model libraries, end-to-end development kits, tools & components as well as service platforms.
PaddlePaddle is originated from industrial practices with dedication and commitments to industrialization. It has been widely adopted by a wide range of sectors including manufacturing, agriculture, enterprise service, and so on while serving more than 1.5 million developers. With such advantages, PaddlePaddle has helped an increasing number of partners commercialize AI.
Z
zhangjinchao01 已提交
20

21 22 23


## Installation
G
gangliao 已提交
24

25
### Latest PaddlePaddle Release: [v1.8](https://github.com/PaddlePaddle/Paddle/tree/release/1.8)
26 27

Our vision is to enable deep learning for everyone via PaddlePaddle.
M
Muennighoff 已提交
28
Please refer to our [release announcement](https://github.com/PaddlePaddle/Paddle/releases) to track the latest features of PaddlePaddle.
X
Xin Pan 已提交
29 30 31 32
### Install Latest Stable Release:
```
# Linux CPU
pip install paddlepaddle
33
# Linux GPU cuda10cudnn7
X
xsrobin 已提交
34 35
pip install paddlepaddle-gpu
# Linux GPU cuda9cudnn7
36
pip install paddlepaddle-gpu==1.8.3.post97
X
xsrobin 已提交
37

X
Xin Pan 已提交
38
```
39
It is recommended to read [this doc](https://www.paddlepaddle.org.cn/documentation/docs/en/beginners_guide/install/index_en.html) on our website.
Z
zhangjinchao01 已提交
40

M
Muennighoff 已提交
41
Now our developers can acquire Tesla V100 online computing resources for free. If you create a program by AI Studio, you will obtain 12 hours to train models online per day. If you can insist on that for five consecutive days, then you will receive an extra 48 hours. [Click here to start](http://ai.baidu.com/support/news?action=detail&id=981).
Z
zhangjinchao01 已提交
42

43
## FOUR LEADING TECHNOLOGIES
Z
zhangjinchao01 已提交
44

45
- **Agile Framework for Industrial Development of Deep Neural Networks**
46

M
Muennighoff 已提交
47
    The PaddlePaddle deep learning framework facilitates the development while lowering the technical burden, through leveraging a programmable scheme to architect the neural networks. It supports both declarative programming and imperative programming with both development flexibility and high runtime performance preserved.  The neural architectures could be automatically designed by algorithms with better performance than the ones designed by human experts.
G
gangliao 已提交
48

Z
zhangjinchao01 已提交
49

50
-  **Support Ultra-Large-Scale Training of Deep Neural Networks**
Z
zhangjinchao01 已提交
51

M
Muennighoff 已提交
52
    PaddlePaddle has made breakthroughs in ultra-large-scale deep neural networks training. It launched the world's first large-scale open-source training platform that supports the training of deep networks with 100 billions of features and trillions of parameters using data sources distributed over hundreds of nodes. PaddlePaddle overcomes the online deep learning challenges for ultra-large-scale deep learning models, and further achieved the real-time model updating with more than 1 trillion parameters.
53
     [Click here to learn more](https://github.com/PaddlePaddle/Fleet)
Z
zhangjinchao01 已提交
54 55


56
- **Accelerated High-Performance Inference over Ubiquitous Deployments**
Z
zhangjinchao01 已提交
57

M
Muennighoff 已提交
58
    PaddlePaddle is not only compatible with other open-source frameworks for models training, but also works well on the ubiquitous developments, varying from platforms to devices. More specifically, PaddlePaddle accelerates the inference procedure with the fastest speed-up. Note that, a recent breakthrough of inference speed has been made by PaddlePaddle on Huawei's Kirin NPU, through the hardware/software co-optimization.
59 60 61 62
     [Click here to learn more](https://github.com/PaddlePaddle/Paddle-Lite)
     
     
- **Industry-Oriented Models and Libraries with Open Source Repositories**
Y
Yi Wang 已提交
63

M
Muennighoff 已提交
64
     PaddlePaddle includes and maintains more than 100 mainstream models that have been practiced and polished for a long time in the industry. Some of these models have won major prizes from key international competitions. In the meanwhile, PaddlePaddle has further more than 200 pre-training models (some of them with source codes) to facilitate the rapid development of industrial applications.
65 66
     [Click here to learn more](https://github.com/PaddlePaddle/models)
     
67

Z
zhangjinchao01 已提交
68
## Documentation
69

70 71
We provide [English](http://www.paddlepaddle.org.cn/documentation/docs/en/1.8/beginners_guide/index_en.html) and
[Chinese](http://www.paddlepaddle.org.cn/documentation/docs/zh/1.8/beginners_guide/index_cn.html) documentation.
Y
Yi Wang 已提交
72

73
- [Basic Deep Learning Models](https://www.paddlepaddle.org.cn/documentation/docs/en/beginners_guide/basics/index_en.html#basic-deep-learning-models)
Y
Yi Wang 已提交
74

75
  You might want to start from how to implement deep learning basics with PaddlePaddle.
Y
Yi Wang 已提交
76 77


78
- [User Guides](https://www.paddlepaddle.org.cn/documentation/docs/en/user_guides/index_en.html)
Y
Yi Wang 已提交
79

80 81 82 83 84
  You might have got the hang of Beginner’s Guide, and wish to model practical problems and build your original networks.
  
  
- [Advanced User Guides](https://www.paddlepaddle.org.cn/documentation/docs/en/advanced_usage/index_en.html)

M
Muennighoff 已提交
85
  So far you have already been familiar with Fluid. And the next step should be building a more efficient model or inventing your original Operator. 
86 87 88


- [API Reference](https://www.paddlepaddle.org.cn/documentation/docs/en/api/index_en.html)
89

Y
Yi Wang 已提交
90
   Our new API enables much shorter programs.
91

92

93
- [How to Contribute](http://paddlepaddle.org.cn/documentation/docs/en/1.8/advanced_usage/development/contribute_to_paddle/index_en.html)
Z
zhangjinchao01 已提交
94

Y
Yi Wang 已提交
95
   We appreciate your contributions!
96

97
## Communication
98

99
- [Github Issues](https://github.com/PaddlePaddle/Paddle/issues): bug reports, feature requests, install issues, usage issues, etc.
X
xsrobin 已提交
100
- QQ discussion group: 796771754 (PaddlePaddle).
101
- [Forums](http://ai.baidu.com/forum/topic/list/168?pageNo=1): discuss implementations, research, etc.
Z
zhangjinchao01 已提交
102 103 104

## Copyright and License
PaddlePaddle is provided under the [Apache-2.0 license](LICENSE).