From 31bd6f85f3a851ca4235c45efc809c9dca86eb3f Mon Sep 17 00:00:00 2001 From: chenxuyi Date: Thu, 16 Jan 2020 14:16:29 +0800 Subject: [PATCH] update requirement --- README.md | 2 +- README.zh.md | 2 +- requirements.txt | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 74182bc..dbaefdd 100644 --- a/README.md +++ b/README.md @@ -653,7 +653,7 @@ BQ Corpus (Bank Question corpus) is a Chinese corpus for sentence semantic equiv ### Install PaddlePaddle -This code base has been tested with Paddle Fluid 1.6 with Python 2/3.5+, since Paddle 1.6 has changed some of APIs, using version before 1.6 might have bug on NER tasks. +This code base has been tested with Paddle Fluid 1.6.3 with Python 2/3.5+, since Paddle 1.6.3 has changed some of APIs, using version before 1.6.3 might have bug on NER tasks. **\*Important\*** When finished installing Paddle Fluid, remember to update LD_LIBRARY_PATH about CUDA, cuDNN, NCCL2, for more information on paddlepaddle setup, you can click [here](http://en.paddlepaddle.org/documentation/docs/en/1.5/beginners_guide/index_en.html) and [here](http://en.paddlepaddle.org/documentation/docs/en/1.5/beginners_guide/install/install_Ubuntu_en.html). Also, you can read FAQ at the end of this document when you encounter errors. diff --git a/README.zh.md b/README.zh.md index 9fce0f3..6008d1a 100644 --- a/README.zh.md +++ b/README.zh.md @@ -689,7 +689,7 @@ ERNIE Tiny轻量级模型在公开数据集的效果如下所示,任务均值 ## PaddlePaddle安装 -本项目依赖于 Paddle 1.6,* 由于Paddle 1.6版本相比之前版本有较大API改动,使用Paddle 1.6以前版本运行本代码库会导致序列标注等任务报错 *,请参考[安装指南](http://www.paddlepaddle.org/#quick-start)进行安装。 +本项目依赖于 Paddle 1.6.3,* 由于Paddle 1.6.3版本相比之前版本有较大API改动,使用Paddle 1.6.3以前版本运行本代码库会导致序列标注等任务报错 *,请参考[安装指南](http://www.paddlepaddle.org/#quick-start)进行安装。 **【重要】安装后,需要及时的将 CUDA、cuDNN、NCCL2 等动态库路径加入到环境变量 LD_LIBRARY_PATH 之中,否则训练过程中会报相关的库错误。具体的paddlepaddle配置细节请查阅[这里](http://en.paddlepaddle.org/documentation/docs/zh/1.5/beginners_guide/quick_start_cn.html)** diff --git a/requirements.txt b/requirements.txt index 2e08a15..e267a77 100644 --- a/requirements.txt +++ b/requirements.txt @@ -6,4 +6,4 @@ scipy==1.2.1 six==1.11.0 sklearn==0.0 sentencepiece==0.1.8 -paddlepaddle-gpu==1.5.2.post107 +paddlepaddle-gpu==1.6.3.post107 -- GitLab