Skip to content

Commit 157f138

Browse files
xsrobinXiaoguangHu01
authored andcommitted
update readme to 1.5.0 (#18438)
1 parent 4bbcc2d commit 157f138

File tree

2 files changed

+22
-24
lines changed

2 files changed

+22
-24
lines changed

README.md

Lines changed: 11 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@
33
English | [简体中文](./README_cn.md)
44

55
[![Build Status](https://travis-ci.org/PaddlePaddle/Paddle.svg?branch=develop)](https://travis-ci.org/PaddlePaddle/Paddle)
6-
[![Documentation Status](https://img.shields.io/badge/docs-latest-brightgreen.svg?style=flat)](http://www.paddlepaddle.org/documentation/docs/en/1.4/beginners_guide/index_en.html)
7-
[![Documentation Status](https://img.shields.io/badge/中文文档-最新-brightgreen.svg)](http://www.paddlepaddle.org/documentation/docs/zh/1.4/beginners_guide/index_cn.html)
6+
[![Documentation Status](https://img.shields.io/badge/docs-latest-brightgreen.svg?style=flat)](http://www.paddlepaddle.org.cn/documentation/docs/en/1.5/beginners_guide/index_en.html)
7+
[![Documentation Status](https://img.shields.io/badge/中文文档-最新-brightgreen.svg)](http://www.paddlepaddle.org.cn/documentation/docs/zh/1.5/beginners_guide/index_cn.html)
88
[![Release](https://img.shields.io/github/release/PaddlePaddle/Paddle.svg)](https://github.com/PaddlePaddle/Paddle/releases)
99
[![License](https://img.shields.io/badge/license-Apache%202-blue.svg)](LICENSE)
1010

@@ -18,17 +18,16 @@ learning to many products at Baidu.
1818
Our vision is to enable deep learning for everyone via PaddlePaddle.
1919
Please refer to our [release announcement](https://github.com/PaddlePaddle/Paddle/releases) to track the latest feature of PaddlePaddle.
2020

21-
### Latest PaddlePaddle Release: [Fluid 1.4.1](https://github.com/PaddlePaddle/Paddle/tree/release/1.4)
21+
### Latest PaddlePaddle Release: [Fluid 1.5.0](https://github.com/PaddlePaddle/Paddle/tree/release/1.5)
2222
### Install Latest Stable Release:
2323
```
2424
# Linux CPU
2525
pip install paddlepaddle
2626
# Linux GPU cuda9cudnn7
2727
pip install paddlepaddle-gpu
2828
# Linux GPU cuda8cudnn7
29-
pip install paddlepaddle-gpu==1.4.1.post87
30-
# Linux GPU cuda8cudnn5
31-
pip install paddlepaddle-gpu==1.4.1.post85
29+
pip install paddlepaddle-gpu==1.5.0.post87
30+
3231
3332
# For installation on other platform, refer to http://paddlepaddle.org/
3433
```
@@ -75,26 +74,26 @@ pip install paddlepaddle-gpu==1.4.1.post85
7574

7675
## Installation
7776

78-
It is recommended to read [this doc](http://www.paddlepaddle.org/documentation/docs/en/1.4/beginners_guide/index_en.html) on our website.
77+
It is recommended to read [this doc](http://www.paddlepaddle.org.cn/documentation/docs/en/1.5/beginners_guide/install/index_en.html) on our website.
7978

8079
## Documentation
8180

82-
We provide [English](http://www.paddlepaddle.org/documentation/docs/en/1.4/beginners_guide/index_en.html) and
83-
[Chinese](http://www.paddlepaddle.org/documentation/docs/zh/1.4/beginners_guide/install/index_cn.html) documentation.
81+
We provide [English](http://www.paddlepaddle.org.cn/documentation/docs/en/1.5/beginners_guide/index_en.html) and
82+
[Chinese](http://www.paddlepaddle.org.cn/documentation/docs/zh/1.5/beginners_guide/index_cn.html) documentation.
8483

8584
- [Deep Learning 101](https://github.com/PaddlePaddle/book)
8685

8786
You might want to start from this online interactive book that can run in a Jupyter Notebook.
8887

89-
- [Distributed Training](http://paddlepaddle.org/documentation/docs/en/1.4/user_guides/howto/training/multi_node_en.html)
88+
- [Distributed Training](http://www.paddlepaddle.org.cn/documentation/docs/en/1.5/user_guides/howto/training/multi_node_en.html)
9089

9190
You can run distributed training jobs on MPI clusters.
9291

93-
- [Python API](http://paddlepaddle.org/documentation/docs/en/1.4/api/index_en.html)
92+
- [Python API](http://www.paddlepaddle.org.cn/documentation/docs/en/1.5/api/index_en.html)
9493

9594
Our new API enables much shorter programs.
9695

97-
- [How to Contribute](http://paddlepaddle.org/documentation/docs/en/1.4/advanced_usage/development/contribute_to_paddle/index_en.html)
96+
- [How to Contribute](http://www.paddlepaddle.org.cn/documentation/docs/en/1.5/advanced_usage/development/contribute_to_paddle/index_en.html)
9897

9998
We appreciate your contributions!
10099

README_cn.md

Lines changed: 11 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@
33
[English](./README.md) | 简体中文
44

55
[![Build Status](https://travis-ci.org/PaddlePaddle/Paddle.svg?branch=develop)](https://travis-ci.org/PaddlePaddle/Paddle)
6-
[![Documentation Status](https://img.shields.io/badge/docs-latest-brightgreen.svg?style=flat)](http://www.paddlepaddle.org/documentation/docs/en/1.4/beginners_guide/index_en.html)
7-
[![Documentation Status](https://img.shields.io/badge/中文文档-最新-brightgreen.svg)](http://www.paddlepaddle.org/documentation/docs/zh/1.4/beginners_guide/index_cn.html)
6+
[![Documentation Status](https://img.shields.io/badge/docs-latest-brightgreen.svg?style=flat)](http://www.paddlepaddle.org.cn/documentation/docs/en/1.5/beginners_guide/index_en.html)
7+
[![Documentation Status](https://img.shields.io/badge/中文文档-最新-brightgreen.svg)](http://www.paddlepaddle.org.cn/documentation/docs/zh/1.5/beginners_guide/index_cn.html)
88
[![Release](https://img.shields.io/github/release/PaddlePaddle/Paddle.svg)](https://github.com/PaddlePaddle/Paddle/releases)
99
[![License](https://img.shields.io/badge/license-Apache%202-blue.svg)](LICENSE)
1010

@@ -16,17 +16,16 @@ PaddlePaddle (PArallel Distributed Deep LEarning) 是一个简单易用、高效
1616

1717
跟进PaddlePaddle最新特性请参考我们的[版本说明](https://github.com/PaddlePaddle/Paddle/releases)
1818

19-
### PaddlePaddle最新版本: [Fluid 1.4.1](https://github.com/PaddlePaddle/Paddle/tree/release/1.4)
19+
### PaddlePaddle最新版本: [Fluid 1.5.0](https://github.com/PaddlePaddle/Paddle/tree/release/1.5)
2020
### 安装最新稳定版本:
2121
```
2222
# Linux CPU
2323
pip install paddlepaddle
2424
# Linux GPU cuda9cudnn7
2525
pip install paddlepaddle-gpu
2626
# Linux GPU cuda8cudnn7
27-
pip install paddlepaddle-gpu==1.4.1.post87
28-
# Linux GPU cuda8cudnn5
29-
pip install paddlepaddle-gpu==1.4.1.post85
27+
pip install paddlepaddle-gpu==1.5.0.post87
28+
3029
3130
# 其他平台上的安装指引请参考 http://paddlepaddle.org/
3231
```
@@ -57,26 +56,26 @@ pip install paddlepaddle-gpu==1.4.1.post85
5756

5857
## 安装
5958

60-
推荐阅读官网上的[安装说明](http://www.paddlepaddle.org/documentation/docs/zh/1.4/beginners_guide/install/index_cn.html)
59+
推荐阅读官网上的[安装说明](http://www.paddlepaddle.org.cn/documentation/docs/zh/1.5/beginners_guide/install/index_cn.html)
6160

6261
## 文档
6362

64-
我们提供[英文](http://www.paddlepaddle.org/documentation/docs/en/1.4/beginners_guide/index_en.html)
65-
[中文](http://www.paddlepaddle.org/documentation/docs/zh/1.4/beginners_guide/install/index_cn.html) 文档
63+
我们提供[英文](http://www.paddlepaddle.org.cn/documentation/docs/en/1.5/beginners_guide/index_en.html)
64+
[中文](http://www.paddlepaddle.org.cn/documentation/docs/zh/1.5/beginners_guide/index_cn.html) 文档
6665

6766
- [深度学习101](https://github.com/PaddlePaddle/book)
6867

6968
或许您想从这个在线交互式书籍开始,可以在Jupyter Notebook中运行
7069

71-
- [分布式训练](http://paddlepaddle.org/documentation/docs/zh/1.4/user_guides/howto/training/multi_node.html)
70+
- [分布式训练](http://www.paddlepaddle.org.cn/documentation/docs/zh/1.5/user_guides/howto/training/multi_node.html)
7271

7372
可以在MPI集群上运行分布式训练任务
7473

75-
- [Python API](http://paddlepaddle.org/documentation/docs/zh/1.4/api_cn/index_cn.html)
74+
- [Python API](http://www.paddlepaddle.org.cn/documentation/docs/zh/1.5/api_cn/index_cn.html)
7675

7776
新的API支持代码更少更简洁的程序
7877

79-
- [贡献方式](http://paddlepaddle.org/documentation/docs/zh/1.4/advanced_usage/development/contribute_to_paddle/index_cn.html)
78+
- [贡献方式](http://www.paddlepaddle.org.cn/documentation/docs/zh/1.5/advanced_usage/development/contribute_to_paddle/index_cn.html)
8079

8180
欢迎您的贡献!
8281

0 commit comments

Comments
 (0)