Skip to content

Commit bdfbaf0

Browse files
authored
Bump v0.20.0 (open-mmlab#1124)
* change version to v0.20.0 * change version to v0.20.0 * change version to v0.20.0
1 parent 5783bc1 commit bdfbaf0

File tree

7 files changed

+67
-6
lines changed

7 files changed

+67
-6
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ This project is released under the [Apache 2.0 license](LICENSE).
4949

5050
## Changelog
5151

52-
v0.19.0 was released in 11/02/2021.
52+
v0.20.0 was released in 12/10/2021.
5353
Please refer to [changelog.md](docs/changelog.md) for details and release history.
5454

5555
## Benchmark and model zoo

README_zh-CN.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ MMSegmentation 是一个基于 PyTorch 的语义分割开源工具箱。它是 O
4848

4949
## 更新日志
5050

51-
最新的月度版本 v0.19.0 在 2021.11.2 发布。
51+
最新的月度版本 v0.20.0 在 2021.12.10 发布。
5252
如果想了解更多版本更新细节和历史信息,请阅读[更新日志](docs/changelog.md)
5353

5454
## 基准测试和模型库

docker/serve/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ ARG CUDNN="7"
44
FROM pytorch/pytorch:${PYTORCH}-cuda${CUDA}-cudnn${CUDNN}-devel
55

66
ARG MMCV="1.3.13"
7-
ARG MMSEG="0.17.0"
7+
ARG MMSEG="0.20.0"
88

99
ENV PYTHONUNBUFFERED TRUE
1010

docs/changelog.md

Lines changed: 59 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,64 @@
11
## Changelog
22

3+
### V0.20 (12/10/2021)
4+
5+
**Highlights**
6+
7+
- Support Twins ([#989](https://github.com/open-mmlab/mmsegmentation/pull/989))
8+
- Support a real-time segmentation model STDC ([#995](https://github.com/open-mmlab/mmsegmentation/pull/995))
9+
- Support a widely-used segmentation model in lane detection ERFNet ([#960](https://github.com/open-mmlab/mmsegmentation/pull/960))
10+
- Support A Remote Sensing Land-Cover Dataset LoveDA ([#1028](https://github.com/open-mmlab/mmsegmentation/pull/1028))
11+
- Support focal loss ([#1024](https://github.com/open-mmlab/mmsegmentation/pull/1024))
12+
13+
**New Features**
14+
15+
- Support Twins ([#989](https://github.com/open-mmlab/mmsegmentation/pull/989))
16+
- Support a real-time segmentation model STDC ([#995](https://github.com/open-mmlab/mmsegmentation/pull/995))
17+
- Support a widely-used segmentation model in lane detection ERFNet ([#960](https://github.com/open-mmlab/mmsegmentation/pull/960))
18+
- Add SETR cityscapes benchmark ([#1087](https://github.com/open-mmlab/mmsegmentation/pull/1087))
19+
- Add BiSeNetV1 COCO-Stuff 164k benchmark ([#1019](https://github.com/open-mmlab/mmsegmentation/pull/1019))
20+
- Support focal loss ([#1024](https://github.com/open-mmlab/mmsegmentation/pull/1024))
21+
- Add Cutout transform ([#1022](https://github.com/open-mmlab/mmsegmentation/pull/1022))
22+
23+
**Improvements**
24+
25+
- Set a random seed when the user does not set a seed ([#1039](https://github.com/open-mmlab/mmsegmentation/pull/1039))
26+
- Add CircleCI setup ([#1086](https://github.com/open-mmlab/mmsegmentation/pull/1086))
27+
- Skip CI on ignoring given paths ([#1078](https://github.com/open-mmlab/mmsegmentation/pull/1078))
28+
- Add abstract and image for every paper ([#1060](https://github.com/open-mmlab/mmsegmentation/pull/1060))
29+
- Create a symbolic link on windows ([#1090](https://github.com/open-mmlab/mmsegmentation/pull/1090))
30+
- Support video demo using trained model ([#1014](https://github.com/open-mmlab/mmsegmentation/pull/1014))
31+
32+
**Bug Fixes**
33+
34+
- Fix incorrectly loading init_cfg or pretrained models of several transformer models ([#999](https://github.com/open-mmlab/mmsegmentation/pull/999), [#1069](https://github.com/open-mmlab/mmsegmentation/pull/1069), [#1102](https://github.com/open-mmlab/mmsegmentation/pull/1102))
35+
- Fix EfficientMultiheadAttention in SegFormer ([#1003](https://github.com/open-mmlab/mmsegmentation/pull/1037))
36+
- Remove `fp16` folder in `configs` ([#1031](https://github.com/open-mmlab/mmsegmentation/pull/1031))
37+
- Fix several typos in .yml file (Dice Metric [#1041](https://github.com/open-mmlab/mmsegmentation/pull/1041), ADE20K dataset [#1120](https://github.com/open-mmlab/mmsegmentation/pull/1120), Training Memory (GB) [#1083](https://github.com/open-mmlab/mmsegmentation/pull/1083))
38+
- Fix test error when using `--show-dir` ([#1091](https://github.com/open-mmlab/mmsegmentation/pull/1091))
39+
- Fix dist training infinite waiting issue ([#1035](https://github.com/open-mmlab/mmsegmentation/pull/1035))
40+
- Change the upper version of mmcv to 1.5.0 ([#1096](https://github.com/open-mmlab/mmsegmentation/pull/1096))
41+
- Fix symlink failure on Windows ([#1038](https://github.com/open-mmlab/mmsegmentation/pull/1038))
42+
- Cancel previous runs that are not completed ([#1118](https://github.com/open-mmlab/mmsegmentation/pull/1118))
43+
- Unified links of readthedocs in docs ([#1119](https://github.com/open-mmlab/mmsegmentation/pull/1119))
44+
45+
**Contributors**
46+
47+
- @Junjue-Wang made their first contribution in https://github.com/open-mmlab/mmsegmentation/pull/1028
48+
- @ddebby made their first contribution in https://github.com/open-mmlab/mmsegmentation/pull/1066
49+
- @del-zhenwu made their first contribution in https://github.com/open-mmlab/mmsegmentation/pull/1078
50+
- @KangBK0120 made their first contribution in https://github.com/open-mmlab/mmsegmentation/pull/1106
51+
- @zergzzlun made their first contribution in https://github.com/open-mmlab/mmsegmentation/pull/1091
52+
- @fingertap made their first contribution in https://github.com/open-mmlab/mmsegmentation/pull/1035
53+
- @irvingzhang0512 made their first contribution in https://github.com/open-mmlab/mmsegmentation/pull/1014
54+
- @littleSunlxy made their first contribution in https://github.com/open-mmlab/mmsegmentation/pull/989
55+
- @lkm2835
56+
- @RockeyCoss
57+
- @MengzhangLI
58+
- @Junjun2016
59+
- @xiexinch
60+
- @xvjiarui
61+
362
### V0.19 (11/02/2021)
463

564
**Highlights**

docs/get_started.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,8 @@ The compatible MMSegmentation and MMCV versions are as below. Please install the
1111

1212
| MMSegmentation version | MMCV version |
1313
|:-------------------:|:-------------------:|
14-
| master | mmcv-full>=1.3.13, <1.4.0 |
14+
| master | mmcv-full>=1.3.13, <1.5.0 |
15+
| 0.20.0 | mmcv-full>=1.3.13, <1.5.0 |
1516
| 0.19.0 | mmcv-full>=1.3.13, <1.4.0 |
1617
| 0.18.0 | mmcv-full>=1.3.13, <1.4.0 |
1718
| 0.17.0 | mmcv-full>=1.3.7, <1.4.0 |

docs_zh-CN/get_started.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,8 @@
1111

1212
| MMSegmentation 版本 | MMCV 版本 |
1313
|:-------------------:|:-------------------:|
14-
| master | mmcv-full>=1.3.13, <1.4.0 |
14+
| master | mmcv-full>=1.3.13, <1.5.0 |
15+
| 0.20.0 | mmcv-full>=1.3.13, <1.5.0 |
1516
| 0.19.0 | mmcv-full>=1.3.13, <1.4.0 |
1617
| 0.18.0 | mmcv-full>=1.3.13, <1.4.0 |
1718
| 0.17.0 | mmcv-full>=1.3.7, <1.4.0 |

mmseg/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Copyright (c) Open-MMLab. All rights reserved.
22

3-
__version__ = '0.19.0'
3+
__version__ = '0.20.0'
44

55

66
def parse_version_info(version_str):

0 commit comments

Comments
 (0)