Skip to content

Commit e4efcb4

Browse files
committedMar 14, 2023
update docs for release/2.6
1 parent 1560acf commit e4efcb4

File tree

13 files changed

+209
-208
lines changed

13 files changed

+209
-208
lines changed
 

‎README_cn.md

+11-3
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
## 简介
44

5-
**PaddleYOLO**是基于[PaddleDetection](https://github.com/PaddlePaddle/PaddleDetection)的YOLO系列模型库,**只包含YOLO系列模型的相关代码**,支持`YOLOv3``PP-YOLO``PP-YOLOv2``PP-YOLOE``PP-YOLOE+``YOLOX``YOLOv5``YOLOv6``YOLOv7``YOLOv8``RTMDet`等模型,COCO数据集模型库请参照 [ModelZoo](docs/MODEL_ZOO_cn.md)[configs](configs/)
5+
**PaddleYOLO**是基于[PaddleDetection](https://github.com/PaddlePaddle/PaddleDetection)的YOLO系列模型库,**只包含YOLO系列模型的相关代码**,支持`YOLOv3``PP-YOLO``PP-YOLOv2``PP-YOLOE``PP-YOLOE+``YOLOX``YOLOv5``YOLOv6``YOLOv7``YOLOv8``YOLOv5u``YOLOv7u``RTMDet`等模型,COCO数据集模型库请参照 [ModelZoo](docs/MODEL_ZOO_cn.md)[configs](configs/)
66

77
<div align="center">
88
<img src="https://user-images.githubusercontent.com/13104100/213197403-c8257486-9ac4-486f-a0d5-4e3fe27ca852.jpg" width="480"/>
@@ -20,7 +20,7 @@
2020
<details open>
2121
<summary>安装</summary>
2222

23-
Clone 代码库和安装 [requirements.txt](https://github.com/PaddlePaddle/PaddleYOLO/blob/release/2.5/requirements.txt),环境需要在一个
23+
Clone 代码库和安装 [requirements.txt](./requirements.txt),环境需要在一个
2424
[**Python>=3.7.0**](https://www.python.org/) 下的环境,且需要安装
2525
[**PaddlePaddle>=2.3.2**](https://www.paddlepaddle.org.cn/install/)
2626

@@ -112,7 +112,7 @@ paddle2onnx --model_dir output_inference/${job_name} --model_filename model.pdmo
112112
<summary> [训练自定义数据集](https://github.com/PaddlePaddle/PaddleYOLO/issues/43) </summary>
113113

114114
- 请参照[文档](docs/MODEL_ZOO_cn.md#自定义数据集)[issue](https://github.com/PaddlePaddle/PaddleYOLO/issues/43)
115-
- PaddleDetection团队提供了**基于PP-YOLOE的各种垂类检测模型**的配置文件和权重,用户也可以作为参考去使用自定义数据集。请参考 [PP-YOLOE application](https://github.com/PaddlePaddle/PaddleDetection/tree/release/2.5/configs/ppyoloe/application)[pphuman](https://github.com/PaddlePaddle/PaddleDetection/tree/release/2.5/configs/pphuman)[ppvehicle](https://github.com/PaddlePaddle/PaddleDetection/tree/release/2.5/configs/ppvehicle)[visdrone](https://github.com/PaddlePaddle/PaddleDetection/tree/release/2.5/configs/visdrone)[smalldet](https://github.com/PaddlePaddle/PaddleDetection/tree/release/2.5/configs/smalldet)
115+
- PaddleDetection团队提供了**基于PP-YOLOE的各种垂类检测模型**的配置文件和权重,用户也可以作为参考去使用自定义数据集。请参考 [PP-YOLOE application](https://github.com/PaddlePaddle/PaddleDetection/tree/release/2.6/configs/ppyoloe/application)[pphuman](https://github.com/PaddlePaddle/PaddleDetection/tree/release/2.6/configs/pphuman)[ppvehicle](https://github.com/PaddlePaddle/PaddleDetection/tree/release/2.6/configs/ppvehicle)[visdrone](https://github.com/PaddlePaddle/PaddleDetection/tree/release/2.6/configs/visdrone)[smalldet](https://github.com/PaddlePaddle/PaddleDetection/tree/release/2.6/configs/smalldet)
116116
- PaddleDetection团队也提供了**VOC数据集的各种YOLO模型**的配置文件和权重,用户也可以作为参考去使用自定义数据集。请参考 [voc](configs/voc)
117117
- 训练自定义数据集之前请先**确保加载了对应COCO权重作为预训练**,将配置文件中的`pretrain_weights: `设置为对应COCO模型训好的权重,一般会提示head分类层卷积的通道数没对应上,属于正常现象,是由于自定义数据集一般和COCO数据集种类数不一致;
118118
- YOLO检测模型建议**`batch_size`至少大于`64`**去训练,如果资源不够请**换小模型****减小模型的输入尺度**,为了保障较高检测精度,**尽量不要尝试单卡训和总`batch_size`小于`64`**
@@ -121,6 +121,8 @@ paddle2onnx --model_dir output_inference/${job_name} --model_filename model.pdmo
121121

122122

123123
## 更新日志
124+
125+
* 【2023/03/13】支持[YOLOv5u](configs/yolov5/yolov5u)[YOLOv7u](configs/yolov7/yolov7u)预测和部署;
124126
* 【2023/01/10】支持[YOLOv8](configs/yolov8)预测和部署;
125127
* 【2022/09/29】支持[RTMDet](configs/rtmdet)预测和部署;
126128
* 【2022/09/26】发布[PaddleYOLO](https://github.com/PaddlePaddle/PaddleYOLO)模型套件,请参照[ModelZoo](docs/MODEL_ZOO_cn.md)
@@ -130,6 +132,12 @@ paddle2onnx --model_dir output_inference/${job_name} --model_filename model.pdmo
130132

131133
## <img src="https://user-images.githubusercontent.com/48054808/157793354-6e7f381a-0aa6-4bb7-845c-9acf2ecc05c3.png" width="20"/> 产品动态
132134

135+
- 🔥 **2023.3.14:PaddleYOLO发布[release/2.6版本](https://github.com/PaddlePaddle/PaddleYOLO/tree/release/2.6)**
136+
- 💡 模型套件:
137+
- 支持`YOLOv8`,`YOLOv5u`,`YOLOv7u`等YOLO模型预测和部署;
138+
- 支持`Swin-Transformer``ViT``FocalNet`骨干网络高精度版`PP-YOLOE+`等模型;
139+
- 支持`YOLOv8`[FastDeploy](https://github.com/PaddlePaddle/FastDeploy/tree/develop/examples/vision/detection/paddledetection)中多硬件快速部署;
140+
133141
- 🔥 **2022.9.26:PaddleYOLO发布[release/2.5版本](https://github.com/PaddlePaddle/PaddleYOLO/tree/release/2.5)**
134142
- 💡 模型套件:
135143
- 发布[PaddleYOLO](https://github.com/PaddlePaddle/PaddleYOLO)模型套件: 支持`YOLOv3`,`PP-YOLOE`,`PP-YOLOE+`,`YOLOX`,`YOLOv5`,`YOLOv6`,`YOLOv7`等YOLO模型,支持`ConvNeXt`骨干网络高精度版`PP-YOLOE`,`YOLOX``YOLOv5`等模型,支持PaddleSlim无损加速量化训练`PP-YOLOE`,`YOLOv5`,`YOLOv6``YOLOv7`等模型;

‎README_en.md

+13-6
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
## Introduction
44

5-
**PaddleYOLO** is a YOLO Series toolbox based on [PaddleDetection](https://github.com/PaddlePaddle/PaddleDetection), **only relevant codes of YOLO series models are included**. It supports `YOLOv3`,`PP-YOLO`,`PP-YOLOv2`,`PP-YOLOE`,`PP-YOLOE+`,`YOLOX`,`YOLOv5`,`YOLOv6`,`YOLOv7`,`YOLOv8`,`RTMDet` and so on, see COCO dataset ModelZoo in [ModelZoo](docs/MODEL_ZOO_en.md) and [configs](configs/).
5+
**PaddleYOLO** is a YOLO series toolbox based on [PaddleDetection](https://github.com/PaddlePaddle/PaddleDetection), **only relevant codes of YOLO series models are included**. It supports `YOLOv3`,`PP-YOLO`,`PP-YOLOv2`,`PP-YOLOE`,`PP-YOLOE+`,`YOLOX`,`YOLOv5`,`YOLOv6`,`YOLOv7`,`YOLOv8`,`YOLOv5u`,`YOLOv7u`,`RTMDet` and so on, see COCO dataset ModelZoo in [ModelZoo](docs/MODEL_ZOO_en.md) and [configs](configs/).
66

77
<div align="center">
88
<img src="https://user-images.githubusercontent.com/13104100/213197403-c8257486-9ac4-486f-a0d5-4e3fe27ca852.jpg" width="480"/>
@@ -19,7 +19,7 @@
1919
<details open>
2020
<summary>Install</summary>
2121

22-
Clone repo and install [requirements.txt](https://github.com/PaddlePaddle/PaddleYOLO/blob/release/2.5/requirements.txt) in a
22+
Clone repo and install [requirements.txt](./requirements.txt) in a
2323
[**Python>=3.7.0**](https://www.python.org/) environment, including
2424
[**PaddlePaddle>=2.3.2**](https://www.paddlepaddle.org.cn/install/).
2525

@@ -112,8 +112,8 @@ paddle2onnx --model_dir output_inference/${job_name} --model_filename model.pdmo
112112
<summary> [Training Custom dataset](https://github.com/PaddlePaddle/PaddleYOLO/issues/43) </summary>
113113

114114
- Please refer to [doc](docs/MODEL_ZOO_en.md#CustomDataset) and [issue](https://github.com/PaddlePaddle/PaddleYOLO/issues/43).
115-
- PaddleDetection team provides various **feature detection models based on PP-YOLOE** , which can also be used as a reference to modify on your custom dataset. Please refer to [PP-YOLOE application](https://github.com/PaddlePaddle/PaddleDetection/tree/release/2.5/configs/ppyoloe/application), [pphuman](https://github.com/PaddlePaddle/PaddleDetection/tree/release/2.5/configs/pphuman), [ppvehicle](https://github.com/PaddlePaddle/PaddleDetection/tree/release/2.5/configs/ppvehicle), [visdrone](https://github.com/PaddlePaddle/PaddleDetection/tree/release/2.5/configs/visdrone) and [smalldet](https://github.com/PaddlePaddle/PaddleDetection/tree/release/2.5/configs/smalldet).
116-
- PaddleDetection also provides **various YOLO models for VOC dataset** , which can also be used as a reference to modify on your custom dataset. Please refer to [voc](https://github.com/PaddlePaddle/PaddleYOLO/tree/release/2.5/configs/voc).
115+
- PaddleDetection team provides various **feature detection models based on PP-YOLOE** , which can also be used as a reference to modify on your custom dataset. Please refer to [PP-YOLOE application](https://github.com/PaddlePaddle/PaddleDetection/tree/release/2.6/configs/ppyoloe/application), [pphuman](https://github.com/PaddlePaddle/PaddleDetection/tree/release/2.6/configs/pphuman), [ppvehicle](https://github.com/PaddlePaddle/PaddleDetection/tree/release/2.6/configs/ppvehicle), [visdrone](https://github.com/PaddlePaddle/PaddleDetection/tree/release/2.6/configs/visdrone) and [smalldet](https://github.com/PaddlePaddle/PaddleDetection/tree/release/2.6/configs/smalldet).
116+
- PaddleDetection also provides **various YOLO models for VOC dataset** , which can also be used as a reference to modify on your custom dataset. Please refer to [voc](https://github.com/PaddlePaddle/PaddleYOLO/tree/release/2.6/configs/voc).
117117
- Please **ensure the corresponding COCO trained weights are loaded as pre-train weights** at first. Set the `pretrain_weights: ` with corresponding COCO trained weights in the config file, and it will generally prompt that the number of channels convolved by the head classification layer does not correspond, which is a normal phenomenon, because the number of types of user-defined data sets is generally inconsistent with that of COCO data sets.
118118
- We recommend to use YOLO detection model **with a total `batch_size` at least greater than `64` to train**. If the resources are insufficient, please **use the smaller model** or **reduce the input size of the model**. To ensure high detection accuracy, **you'd better not try to using single GPU or total `batch_size` less than `64` for training**;
119119

@@ -122,6 +122,7 @@ paddle2onnx --model_dir output_inference/${job_name} --model_filename model.pdmo
122122

123123
## Updates
124124

125+
* 【2023/03/13】Support [YOLOv5u](configs/yolov5/yolov5u) and [YOLOv7u](configs/yolov7/yolov7u) inference and deploy;
125126
* 【2023/01/10】Support [YOLOv8](configs/yolov8) inference and deploy;
126127
* 【2022/09/29】Support [RTMDet](configs/rtmdet) inference and deploy;
127128
* 【2022/09/26】Release [PaddleYOLO](https://github.com/PaddlePaddle/PaddleYOLO), see [ModelZoo](docs/MODEL_ZOO_en.md);
@@ -131,11 +132,17 @@ paddle2onnx --model_dir output_inference/${job_name} --model_filename model.pdmo
131132

132133
## <img src="https://user-images.githubusercontent.com/48054808/157793354-6e7f381a-0aa6-4bb7-845c-9acf2ecc05c3.png" width="20"/> Product Update
133134

134-
- 🔥 **2022.9.26:Release PaddleYOLO[release/2.5](https://github.com/PaddlePaddle/PaddleYOLO/tree/release/2.5)**
135+
- 🔥 **2023.3.14:Release PaddleYOLO [release/2.6](https://github.com/PaddlePaddle/PaddleYOLO/tree/release/2.6)**
136+
- 💡 Model kit:
137+
- Support `YOLOv8`,`YOLOv5u`,`YOLOv7u` inference and deploy.
138+
- Support `Swin-Transformer``ViT``FocalNet` backbone to get high-precision version of `PP-YOLOE+`.
139+
- Support `YOLOv8` in [FastDeploy](https://github.com/PaddlePaddle/FastDeploy/tree/develop/examples/vision/detection/paddledetection).
140+
141+
- 🔥 **2022.9.26:Release PaddleYOLO [release/2.5](https://github.com/PaddlePaddle/PaddleYOLO/tree/release/2.5)**
135142
- 💡 Model kit:
136143
- Release [PaddleYOLO](https://github.com/PaddlePaddle/PaddleYOLO): support `YOLOv3`,`PP-YOLOE`,`PP-YOLOE+`,`YOLOX`,`YOLOv5`,`YOLOv6` and `YOLOv7`; support using `ConvNeXt` backbone to get high-precision version of `PP-YOLOE`,`YOLOX` and `YOLOv5`; support PaddleSlim accelerated quantitative training `PP-YOLOE`,`YOLOv5`,`YOLOv6` and `YOLOv7`.
137144

138-
- 🔥 **2022.8.26:PaddleDetection releases[release/2.5 version](https://github.com/PaddlePaddle/PaddleDetection/tree/release/2.5)**
145+
- 🔥 **2022.8.26:PaddleDetection [release/2.5 version](https://github.com/PaddlePaddle/PaddleDetection/tree/release/2.5)**
139146

140147
- 🗳 Model features:
141148

‎configs/ppyoloe/README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -126,9 +126,9 @@ wget https://bj.bcebos.com/v1/paddledet/data/voc.zip
126126

127127
### Custom dataset
128128

129-
1.For the annotation of custom dataset, please refer to [DetAnnoTools](https://github.com/PaddlePaddle/PaddleDetection/blob/release/2.5/docs/tutorials/data/DetAnnoTools_en.md);
129+
1.For the annotation of custom dataset, please refer to [DetAnnoTools](https://github.com/PaddlePaddle/PaddleDetection/blob/release/2.6/docs/tutorials/data/DetAnnoTools_en.md);
130130

131-
2.For training preparation of custom dataset,please refer to [PrepareDataSet](https://github.com/PaddlePaddle/PaddleDetection/blob/release/2.5/docs/tutorials/data/PrepareDetDataSet_en.md).
131+
2.For training preparation of custom dataset,please refer to [PrepareDataSet](https://github.com/PaddlePaddle/PaddleDetection/blob/release/2.6/docs/tutorials/data/PrepareDetDataSet_en.md).
132132

133133

134134
### Training

‎configs/ppyoloe/README_cn.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -125,8 +125,8 @@ wget https://bj.bcebos.com/v1/paddledet/data/voc.zip
125125

126126
### 自定义数据集
127127

128-
1.自定义数据集的标注制作,请参考 [DetAnnoTools](https://github.com/PaddlePaddle/PaddleDetection/blob/release/2.5/docs/tutorials/data/DetAnnoTools.md);
129-
2.自定义数据集的训练准备,请参考 [PrepareDataSet](https://github.com/PaddlePaddle/PaddleDetection/blob/release/2.5/docs/tutorials/data/PrepareDetDataSet.md).
128+
1.自定义数据集的标注制作,请参考 [DetAnnoTools](https://github.com/PaddlePaddle/PaddleDetection/blob/release/2.6/docs/tutorials/data/DetAnnoTools.md);
129+
2.自定义数据集的训练准备,请参考 [PrepareDataSet](https://github.com/PaddlePaddle/PaddleDetection/blob/release/2.6/docs/tutorials/data/PrepareDetDataSet.md).
130130

131131

132132
### 训练

‎configs/smalldet/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ AI Studio 官方教程案例请参考[基于PP-YOLOE-SOD的无人机航拍图像
103103
- DOTA水平框和Xview数据集均是**切图后训练**,AP指标为**切图后的子图val上的指标**
104104
- VisDrone-DET数据集请参照[visdrone](./visdrone)**可使用原图训练,也可使用切图后训练**,这上面表格中的指标均是使用VisDrone-DET的val子集做验证而未使用test_dev子集。
105105
- PP-YOLOE模型训练过程中使用8 GPUs进行混合精度训练,如果**GPU卡数**或者**batch size**发生了改变,你需要按照公式 **lr<sub>new</sub> = lr<sub>default</sub> * (batch_size<sub>new</sub> * GPU_number<sub>new</sub>) / (batch_size<sub>default</sub> * GPU_number<sub>default</sub>)** 调整学习率。
106-
- 常用训练验证部署等步骤请参考[ppyoloe](https://github.com/PaddlePaddle/PaddleDetection/tree/release/2.5/configs/ppyoloe#getting-start)
106+
- 常用训练验证部署等步骤请参考[ppyoloe](https://github.com/PaddlePaddle/PaddleDetection/tree/release/2.6/configs/ppyoloe#getting-start)
107107
- 自动切图和拼图的推理预测需添加设置`--slice_infer`,具体见下文[模型库使用说明](#模型库使用说明)中的[预测](#预测)[部署](#部署)
108108
- 自动切图和拼图过程,参照[2.3 子图拼图评估](#评估)
109109

‎configs/smalldet/visdrone/README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ PaddleDetection团队提供了针对VisDrone-DET小目标数航拍场景的基
4747

4848
## 注意事项:
4949
- PP-YOLOE模型训练过程中使用8 GPUs进行混合精度训练,如果**GPU卡数**或者**batch size**发生了改变,你需要按照公式 **lr<sub>new</sub> = lr<sub>default</sub> * (batch_size<sub>new</sub> * GPU_number<sub>new</sub>) / (batch_size<sub>default</sub> * GPU_number<sub>default</sub>)** 调整学习率。
50-
- 具体使用教程请参考[ppyoloe](https://github.com/PaddlePaddle/PaddleDetection/tree/release/2.5/configs/ppyoloe#getting-start)
50+
- 具体使用教程请参考[ppyoloe](https://github.com/PaddlePaddle/PaddleDetection/tree/release/2.6/configs/ppyoloe#getting-start)
5151
- MatlabAPI测试是使用官网评测工具[VisDrone2018-DET-toolkit](https://github.com/VisDrone/VisDrone2018-DET-toolkit)
5252
- 切图训练模型的配置文件及训练相关流程请参照[README](../README.cn)
5353

@@ -127,7 +127,7 @@ CUDA_VISIBLE_DEVICES=0 python deploy/python/infer.py --model_dir=output_inferenc
127127
```
128128

129129
**注意:**
130-
- TensorRT会根据网络的定义,执行针对当前硬件平台的优化,生成推理引擎并序列化为文件。该推理引擎只适用于当前软硬件平台。如果你的软硬件平台没有发生变化,你可以设置[enable_tensorrt_engine](https://github.com/PaddlePaddle/PaddleDetection/blob/release/2.5/deploy/python/infer.py#L857)的参数`use_static=True`,这样生成的序列化文件将会保存在`output_inference`文件夹下,下次执行TensorRT时将加载保存的序列化文件。
130+
- TensorRT会根据网络的定义,执行针对当前硬件平台的优化,生成推理引擎并序列化为文件。该推理引擎只适用于当前软硬件平台。如果你的软硬件平台没有发生变化,你可以设置[enable_tensorrt_engine](https://github.com/PaddlePaddle/PaddleDetection/blob/release/2.6/deploy/python/infer.py#L857)的参数`use_static=True`,这样生成的序列化文件将会保存在`output_inference`文件夹下,下次执行TensorRT时将加载保存的序列化文件。
131131
- PaddleDetection release/2.4及其之后的版本将支持NMS调用TensorRT,需要依赖PaddlePaddle release/2.3及其之后的版本
132132

133133

‎deploy/auto_compression/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,7 @@ python tools/export_model.py \
113113
trt=True \
114114
```
115115

116-
YOLOv8-s模型,包含NMS,具体可参考[YOLOv8模型文档](https://github.com/PaddlePaddle/PaddleYOLO/tree/release/2.5/configs/yolov8), 然后执行:
116+
YOLOv8-s模型,包含NMS,具体可参考[YOLOv8模型文档](https://github.com/PaddlePaddle/PaddleYOLO/tree/release/2.6/configs/yolov8), 然后执行:
117117
```shell
118118
python tools/export_model.py \
119119
-c configs/yolov8/yolov8_s_500e_coco.yml \

‎deploy/third_engine/demo_avh/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -104,4 +104,4 @@ python3 ./convert_image.py path/to/image
104104
105105
Model description
106106
-----------------
107-
In this demo, the model we used is based on [PP-PicoDet](https://github.com/PaddlePaddle/PaddleDetection/tree/release/2.5/configs/picodet). Because of the excellent performance, PP-PicoDet are very suitable for deployment on mobile or CPU. And it is released by [PaddleDetection](https://github.com/PaddlePaddle/PaddleDetection).
107+
In this demo, the model we used is based on [PP-PicoDet](https://github.com/PaddlePaddle/PaddleDetection/tree/release/2.6/configs/picodet). Because of the excellent performance, PP-PicoDet are very suitable for deployment on mobile or CPU. And it is released by [PaddleDetection](https://github.com/PaddlePaddle/PaddleDetection).

‎docs/MODEL_ZOO_cn.md

+80-78
Large diffs are not rendered by default.

‎docs/MODEL_ZOO_en.md

+79-78
Large diffs are not rendered by default.

‎docs/tutorials/INSTALL.md

+9-18
Original file line numberDiff line numberDiff line change
@@ -3,37 +3,28 @@ English | [简体中文](INSTALL_cn.md)
33
# Installation
44

55

6-
This document covers how to install PaddleDetection and its dependencies
6+
This document covers how to install PaddleYOLO and its dependencies
77
(including PaddlePaddle), together with COCO and Pascal VOC dataset.
88

9-
For general information about PaddleDetection, please see [README.md](https://github.com/PaddlePaddle/PaddleDetection/tree/develop).
9+
For general information about PaddleYOLO, please see [README.md](https://github.com/PaddlePaddle/PaddleYOLO/tree/develop).
1010

1111
## Requirements:
1212

13-
- PaddlePaddle 2.2
13+
- PaddlePaddle 2.3.2
1414
- OS 64 bit
1515
- Python 3(3.5.1+/3.6/3.7/3.8/3.9),64 bit
1616
- pip/pip3(9.0.1+), 64 bit
1717
- CUDA >= 10.2
1818
- cuDNN >= 7.6
1919

2020

21-
Dependency of PaddleDetection and PaddlePaddle:
21+
Dependency of PaddleYOLO and PaddlePaddle:
2222

23-
| PaddleDetection version | PaddlePaddle version | tips |
23+
| PaddleYOLO version | PaddlePaddle version | tips |
2424
| :----------------: | :---------------: | :-------: |
25-
| develop | >= 2.2.2 | Dygraph mode is set as default |
25+
| develop | >= 2.3.2 | Dygraph mode is set as default |
26+
| release/2.6 | >= 2.3.2 | Dygraph mode is set as default |
2627
| release/2.5 | >= 2.2.2 | Dygraph mode is set as default |
27-
| release/2.4 | >= 2.2.2 | Dygraph mode is set as default |
28-
| release/2.3 | >= 2.2.0rc | Dygraph mode is set as default |
29-
| release/2.2 | >= 2.1.2 | Dygraph mode is set as default |
30-
| release/2.1 | >= 2.1.0 | Dygraph mode is set as default |
31-
| release/2.0 | >= 2.0.1 | Dygraph mode is set as default |
32-
| release/2.0-rc | >= 2.0.1 | -- |
33-
| release/0.5 | >= 1.8.4 | Cascade R-CNN and SOLOv2 depends on 2.0.0.rc |
34-
| release/0.4 | >= 1.8.4 | PP-YOLO depends on 1.8.4 |
35-
| release/0.3 | >=1.7 | -- |
36-
3728

3829
## Instruction
3930

@@ -42,10 +33,10 @@ Dependency of PaddleDetection and PaddlePaddle:
4233
```
4334
4435
# CUDA10.2
45-
python -m pip install paddlepaddle-gpu==2.2.2 -i https://mirror.baidu.com/pypi/simple
36+
python -m pip install paddlepaddle-gpu==2.3.2 -i https://mirror.baidu.com/pypi/simple
4637
4738
# CPU
48-
python -m pip install paddlepaddle==2.2.2 -i https://mirror.baidu.com/pypi/simple
39+
python -m pip install paddlepaddle==2.3.2 -i https://mirror.baidu.com/pypi/simple
4940
```
5041

5142
- For more CUDA version or environment to quick install, please refer to the [PaddlePaddle Quick Installation document](https://www.paddlepaddle.org.cn/install/quick)

‎docs/tutorials/INSTALL_cn.md

+7-15
Original file line numberDiff line numberDiff line change
@@ -7,39 +7,31 @@
77

88
## 环境要求
99

10-
- PaddlePaddle 2.2
10+
- PaddlePaddle 2.3.2
1111
- OS 64位操作系统
1212
- Python 3(3.5.1+/3.6/3.7/3.8/3.9),64位版本
1313
- pip/pip3(9.0.1+),64位版本
1414
- CUDA >= 10.2
1515
- cuDNN >= 7.6
1616

17-
PaddleDetection 依赖 PaddlePaddle 版本关系:
17+
PaddleYOLO 依赖 PaddlePaddle 版本关系:
1818

19-
| PaddleDetection版本 | PaddlePaddle版本 | 备注 |
19+
| PaddleYOLO版本 | PaddlePaddle版本 | 备注 |
2020
| :------------------: | :---------------: | :-------: |
21-
| develop | >= 2.2.2 | 默认使用动态图模式 |
21+
| develop | >= 2.3.2 | 默认使用动态图模式 |
22+
| release/2.6 | >= 2.3.2 | 默认使用动态图模式 |
2223
| release/2.5 | >= 2.2.2 | 默认使用动态图模式 |
23-
| release/2.4 | >= 2.2.2 | 默认使用动态图模式 |
24-
| release/2.3 | >= 2.2.0rc | 默认使用动态图模式 |
25-
| release/2.2 | >= 2.1.2 | 默认使用动态图模式 |
26-
| release/2.1 | >= 2.1.0 | 默认使用动态图模式 |
27-
| release/2.0 | >= 2.0.1 | 默认使用动态图模式 |
28-
| release/2.0-rc | >= 2.0.1 | -- |
29-
| release/0.5 | >= 1.8.4 | 大部分模型>=1.8.4即可运行,Cascade R-CNN系列模型与SOLOv2依赖2.0.0.rc版本 |
30-
| release/0.4 | >= 1.8.4 | PP-YOLO依赖1.8.4 |
31-
| release/0.3 | >=1.7 | -- |
3224

3325
## 安装说明
3426

3527
### 1. 安装PaddlePaddle
3628

3729
```
3830
# CUDA10.2
39-
python -m pip install paddlepaddle-gpu==2.2.2 -i https://mirror.baidu.com/pypi/simple
31+
python -m pip install paddlepaddle-gpu==2.3.2 -i https://mirror.baidu.com/pypi/simple
4032
4133
# CPU
42-
python -m pip install paddlepaddle==2.2.2 -i https://mirror.baidu.com/pypi/simple
34+
python -m pip install paddlepaddle==2.3.2 -i https://mirror.baidu.com/pypi/simple
4335
```
4436
- 更多CUDA版本或环境快速安装,请参考[PaddlePaddle快速安装文档](https://www.paddlepaddle.org.cn/install/quick)
4537
- 更多安装方式例如conda或源码编译安装方法,请参考[PaddlePaddle安装文档](https://www.paddlepaddle.org.cn/documentation/docs/zh/install/index_cn.html)

‎setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121

2222
# ============== version definition ==============
2323

24-
PPDET_VERSION = "2.5.0"
24+
PPDET_VERSION = "2.6.0"
2525

2626

2727
def parse_version():

0 commit comments

Comments
 (0)
Please sign in to comment.