From 6bb3483f1f5144abaffd81f1c7097fbf0a5942a4 Mon Sep 17 00:00:00 2001 From: wuzewu Date: Wed, 6 Jan 2021 10:25:13 +0800 Subject: [PATCH] Update version --- docs/docs_ch/installation.md | 2 +- docs/docs_en/installation_en.md | 2 +- paddlehub/__init__.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/docs_ch/installation.md b/docs/docs_ch/installation.md index d0fe6ada..2f6e819f 100644 --- a/docs/docs_ch/installation.md +++ b/docs/docs_ch/installation.md @@ -18,7 +18,7 @@ pip install paddlepaddle-gpu==2.0.0rc 在安装PaddleHub之前,请先安装PaddlePaddle深度学习框架,更多安装说明请查阅[飞桨快速安装](https://www.paddlepaddle.org.cn/install/quick/zh/2.0rc-windows-pip) ```shell -pip install paddlehub==2.0.0b2 +pip install paddlehub==2.0.0rc0 ``` 除上述依赖外,PaddleHub的预训练模型和预置数据集需要连接服务端进行下载,请确保机器可以正常访问网络。若本地已存在相关的数据集和预训练模型,则可以离线运行PaddleHub。 diff --git a/docs/docs_en/installation_en.md b/docs/docs_en/installation_en.md index 8c1332a9..0c556acc 100644 --- a/docs/docs_en/installation_en.md +++ b/docs/docs_en/installation_en.md @@ -18,7 +18,7 @@ pip install paddlepaddle-gpu==2.0.0rc Before installing the PaddleHub, install the PaddlePaddle deep learning framework first. For more installation instructions, refer to [PaddleQuickInstall](https://www.paddlepaddle.org.cn/install/quick/zh/2.0rc-windows-pip) ```shell -pip install paddlehub==2.0.0b2 +pip install paddlehub==2.0.0rc0 ``` In addition to the above dependences, PaddleHub's pre-training models and pre-set datasets need to be downloaded through connecting to the server. Make sure that the computer can access the network. You can run PaddleHub offline if the relevant datasets and pre-set models are already available locally. diff --git a/paddlehub/__init__.py b/paddlehub/__init__.py index 2b7ea420..c276648e 100644 --- a/paddlehub/__init__.py +++ b/paddlehub/__init__.py @@ -17,7 +17,7 @@ import sys from easydict import EasyDict -__version__ = '2.0.0-beta2' +__version__ = '2.0.0-rc0' from paddlehub import env from paddlehub.config import config -- GitLab