Bladeren bron

Merge pull request #928 from FlyingQianMM/develop_qh

update reademe version
FlyingQianMM 4 jaren geleden
bovenliggende
commit
baed62a120
3 gewijzigde bestanden met toevoegingen van 11 en 12 verwijderingen
  1. 2 2
      dygraph/README.md
  2. 1 1
      dygraph/docs/CHANGELOG.md
  3. 8 9
      dygraph/docs/install.md

+ 2 - 2
dygraph/README.md

@@ -1,4 +1,4 @@
-# PaddleX全面升级动态图,2.0.0-rc1发布!
+# PaddleX全面升级动态图,2.0.0-rc3发布!
 
 
 
@@ -97,7 +97,7 @@
 
 ## 版本更新
 
-- **2021.07.05 v2.0.0-rc1**
+- **2021.07.06 v2.0.0-rc3**
 
   PaddleX部署全面升级,支持飞桨视觉套件PaddleDetection、PaddleClas、PaddleSeg、PaddleX的端到端统一部署能力。全新发布Manufacture SDK,提供工业级多端多平台部署加速的预编译飞桨部署开发包(SDK),通过配置业务逻辑流程文件即可以低代码方式快速完成推理部署。发布产业实践案例:钢筋计数、缺陷检测、机械手抓取、工业表计读数、Windows系统下使用C#语言部署。升级PaddleX GUI,支持30系列显卡、新增模型PP-YOLO V2、PP-YOLO Tiny 、BiSeNetV2。详细内容请参考[版本更新文档](./docs/CHANGELOG.md)
 

+ 1 - 1
dygraph/docs/CHANGELOG.md

@@ -2,7 +2,7 @@
 
 ## 最新版本信息
 
-- **2021.07.05 v2.0.0-rc1**
+- **2021.07.06 v2.0.0-rc3**
 
   * PaddleX部署全面升级,支持飞桨视觉套件PaddleDetection、PaddleClas、PaddleSeg、PaddleX的端到端统一部署能力。[使用教程](https://github.com/PaddlePaddle/PaddleX/tree/develop/dygraph/deploy/cpp)
   * 全新发布Manufacture SDK,提供工业级多端多平台部署加速的预编译飞桨部署开发包(SDK),通过配置业务逻辑流程文件即可以低代码方式快速完成推理部署。[使用教程](https://github.com/PaddlePaddle/PaddleX/tree/develop/dygraph/deploy/cpp/docs/manufacture_sdk)

+ 8 - 9
dygraph/docs/install.md

@@ -16,11 +16,11 @@
 以下安装过程默认用户已安装好**paddlepaddle-gpu或paddlepaddle(版本大于或等于2.1.0)**,paddlepaddle安装方式参照[飞桨官网](https://www.paddlepaddle.org.cn/install/quick?docurl=/documentation/docs/zh/develop/install/pip/windows-pip.html)
 
 
-### PaddleX 2.0.0-rc1安装
+### PaddleX 2.0.0-rc3安装
 
 #### * Linux / macOS 操作系统
 
-使用pip安装方式安装2.0.0-rc1版本:
+使用pip安装方式安装2.0.0-rc3版本:
 
 ```
 pip install paddlex -i https://mirror.baidu.com/pypi/simple
@@ -38,7 +38,7 @@ pip install pycocotools
 #### * Windows 操作系统
 
 
-使用pip安装方式安装2.0.0-rc1版本:
+使用pip安装方式安装2.0.0-rc3版本:
 
 ```
 pip install paddlex -i https://mirror.baidu.com/pypi/simple
@@ -57,14 +57,13 @@ pip install git+https://gitee.com/jiangjiajun/philferriere-cocoapi.git#subdirect
 github代码会跟随开发进度不断更新,可以安装develop分支的代码使用最新的功能,安装方式如下:
 
 ```
-> - git clone --recurse-submodules https://github.com/PaddlePaddle/PaddleX.git
-> - cd PaddleX/dygraph
-> - pip install -r requirements.txt
-> - pip install -r submodules.txt
-> - python setup.py install
+git clone https://github.com/PaddlePaddle/PaddleX.git
+cd PaddleX/dygraph
+pip install -r requirements.txt
+python setup.py install
 ```
 
-如遇到pycocotools安装失败,参考[PaddleX 2.0.0-rc1安装](./install.md#paddlex-200-rc1安装)中介绍的解决方法。
+如遇到pycocotools安装失败,参考[PaddleX 2.0.0-rc3安装](./install.md#paddlex-200-rc3安装)中介绍的解决方法。
 
 ## <h2 id="2">2. PadldeX GUI开发模式安装</h2>