Skip to content

Commit 5d0ec15

Browse files
committed
Release v0.7.0
1 parent 69840ce commit 5d0ec15

File tree

5 files changed

+21
-20
lines changed

5 files changed

+21
-20
lines changed

README.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -156,6 +156,18 @@ A: 降低Batch size,使用Group Norm策略;请注意训练过程中当`DEFAU
156156

157157
## 更新日志
158158

159+
* 2020.10.28
160+
161+
**`v0.7.0`**
162+
* 全面支持Paddle2.0-rc动态图模式,推出PaddleSeg[动态图体验版](./dygraph/)
163+
* 发布大量动态图模型,支持11个分割模型,4个骨干网络,3个数据集:
164+
* 分割模型:ANN, BiSeNetV2, DANet, DeeplabV3, DeeplabV3+, FCN, FastSCNN, GCNet, OCRNet, PSPNet, UNet
165+
* 骨干网络:ResNet, HRNet, MobileNetV3, Xception
166+
* 数据集:Cityscapes, ADE20K, Pascal VOC
167+
168+
* 提供高精度骨干网络预训练模型以及基于Cityscapes数据集的语义分割[预训练模型](./dygraph/configs/)。Cityscapes精度超过**82%**
169+
170+
159171
* 2020.08.31
160172

161173
**`v0.6.0`**

dygraph/README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020

2121
## 数据集
2222

23-
- [x] CityScapes
23+
- [x] Cityscapes
2424
- [x] Pascal VOC
2525
- [x] ADE20K
2626
- [ ] Pascal Context
@@ -36,7 +36,7 @@
3636

3737
* Python >= 3.6+
3838

39-
由于图像分割模型计算开销大,推荐在GPU版本的PaddlePaddle下使用PaddleSeg.
39+
由于图像分割模型计算开销大,推荐在GPU版本的PaddlePaddle下使用PaddleSeg。推荐安装10.0以上的CUDA环境。
4040

4141

4242
安装教程请见[PaddlePaddle官网](https://www.paddlepaddle.org.cn/documentation/docs/zh/2.0-beta/install/index_cn.html)
@@ -51,7 +51,7 @@ git clone https://github.com/PaddlePaddle/PaddleSeg
5151
通过以下命令安装python包依赖,请确保在该分支上至少执行过一次以下命令:
5252

5353

54-
```
54+
```shell
5555
cd PaddleSeg/dygraph
5656
export PYTHONPATH=`pwd`
5757
# windows下请执行以下命令
@@ -60,8 +60,8 @@ pip install -r requirements.txt
6060
```
6161

6262
## 训练
63-
```
64-
python3 train.py --config configs/quick_start/bisenet_optic_disc_512x512_1k.yml
63+
```shell
64+
python train.py --config configs/quick_start/bisenet_optic_disc_512x512_1k.yml
6565
```
6666

6767
## 使用教程

dygraph/docs/config.md

Lines changed: 0 additions & 11 deletions
This file was deleted.

dygraph/docs/data_prepare.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -40,8 +40,8 @@ python tools/voc_augment.py --voc_path data/VOCdevkit --num_workers 8
4040
**注意** 运行前请确保在dygraph目录下执行过下列命令:
4141
```shell
4242
export PYTHONPATH=`pwd`
43-
# windows下请执行相面的命令
44-
# set PYTHONPATH=%cd%
43+
# windows下请执行相面的命令
44+
# set PYTHONPATH=%cd%
4545
```
4646

4747
## 关于ADE20K数据集
@@ -81,7 +81,7 @@ export PYTHONPATH=`pwd`
8181
2.标注图像的标签从0,1依次取值,不可间隔。若有需要忽略的像素,则按255进行标注。
8282

8383
可按如下方式对自定义数据集进行配置:
84-
```
84+
```yaml
8585
train_dataset:
8686
type: Dataset
8787
dataset_root: custom_dataset
@@ -97,4 +97,4 @@ train_dataset:
9797
- type: RandomHorizontalFlip
9898
- type: Normalize
9999
mode: train
100-
```
100+
```

dygraph/docs/infer.md

Whitespace-only changes.

0 commit comments

Comments
 (0)