Skip to content

Commit b51670b

Browse files
authored
Bump v0.28.0 (open-mmlab#2047)
* bump v0.28.0 * update
1 parent c1c942e commit b51670b

File tree

7 files changed

+33
-8
lines changed

7 files changed

+33
-8
lines changed

README.md

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -75,10 +75,12 @@ The master branch works with **PyTorch 1.5+**.
7575

7676
## What's New
7777

78-
v0.27.0 was released in 7/28/2022:
78+
### 💎 Stable version
7979

80-
- Add Swin-L Transformer models
81-
- Update ERFNet result on Cityscapes
80+
v0.28.0 was released in 9/08/2022:
81+
82+
- Support Tversky Loss
83+
- Fix binary segmentation
8284

8385
Please refer to [changelog.md](docs/en/changelog.md) for details and release history.
8486

README_zh-CN.md

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -72,10 +72,12 @@ MMSegmentation 是一个基于 PyTorch 的语义分割开源工具箱。它是 O
7272

7373
## 最新进展
7474

75-
最新版本 v0.27.0 在 2022.7.28 发布:
75+
### 💎 稳定版本
7676

77-
- 添加 Swin-L Transformer 模型
78-
- 更新了 ERFNet 在 Cityscapes 上的结果
77+
最新版本 v0.28.0 在 2022.9.8 发布:
78+
79+
- 支持 Tversky Loss
80+
- 修复二值分割
7981

8082
如果想了解更多版本更新细节和历史信息,请阅读[更新日志](docs/en/changelog.md)
8183

docker/serve/Dockerfile

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

66
ARG MMCV="1.5.0"
7-
ARG MMSEG="0.27.0"
7+
ARG MMSEG="0.28.0"
88

99
ENV PYTHONUNBUFFERED TRUE
1010

docs/en/changelog.md

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

3+
### V0.28.0 (9/8/2022)
4+
5+
**New Features**
6+
7+
- Support Tversky Loss ([#1896](https://github.com/open-mmlab/mmsegmentation/pull/1986))
8+
9+
**Bug Fixes**
10+
11+
- Fix binary segmentation ([#2016](https://github.com/open-mmlab/mmsegmentation/pull/2016))
12+
- Fix config files ([#1901](https://github.com/open-mmlab/mmsegmentation/pull/1901), [#1893](https://github.com/open-mmlab/mmsegmentation/pull/1893), [#1871](https://github.com/open-mmlab/mmsegmentation/pull/1871))
13+
- Revise documentation ([#1844](https://github.com/open-mmlab/mmsegmentation/pull/1844), [#1980](https://github.com/open-mmlab/mmsegmentation/pull/1980), [#2025](https://github.com/open-mmlab/mmsegmentation/pull/2025), [#1982](https://github.com/open-mmlab/mmsegmentation/pull/1982))
14+
- Fix confusion matrix calculation ([#1992](https://github.com/open-mmlab/mmsegmentation/pull/1992))
15+
- Fix decode head forward_train error ([#1997](https://github.com/open-mmlab/mmsegmentation/pull/1997))
16+
17+
**Contributors**
18+
19+
- @suchot made their first contribution in https://github.com/open-mmlab/mmsegmention/pull/1844
20+
- @TimoK93 made their first contribution in https://github.com/open-mmlab/mmsegmentation/pull/1992
21+
322
### V0.27.0 (7/28/2022)
423

524
**Enhancement**

docs/en/faq.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ The compatible MMSegmentation and MMCV versions are as below. Please install the
99
| MMSegmentation version | MMCV version | MMClassification version |
1010
| :--------------------: | :-------------------------: | :----------------------: |
1111
| master | mmcv-full>=1.5.0, \<1.7.0 | mmcls>=0.20.1, \<=1.0.0 |
12+
| 0.28.0 | mmcv-full>=1.5.0, \<1.7.0 | mmcls>=0.20.1, \<=1.0.0 |
1213
| 0.27.0 | mmcv-full>=1.5.0, \<1.7.0 | mmcls>=0.20.1, \<=1.0.0 |
1314
| 0.26.0 | mmcv-full>=1.5.0, \<=1.6.0 | mmcls>=0.20.1, \<=1.0.0 |
1415
| 0.25.0 | mmcv-full>=1.5.0, \<=1.6.0 | mmcls>=0.20.1, \<=1.0.0 |

docs/zh_cn/faq.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@
99
| MMSegmentation version | MMCV version | MMClassification version |
1010
| :--------------------: | :-------------------------: | :----------------------: |
1111
| master | mmcv-full>=1.5.0, \<1.7.0 | mmcls>=0.20.1, \<=1.0.0 |
12+
| 0.28.0 | mmcv-full>=1.5.0, \<1.7.0 | mmcls>=0.20.1, \<=1.0.0 |
1213
| 0.27.0 | mmcv-full>=1.5.0, \<1.7.0 | mmcls>=0.20.1, \<=1.0.0 |
1314
| 0.26.0 | mmcv-full>=1.5.0, \<=1.6.0 | mmcls>=0.20.1, \<=1.0.0 |
1415
| 0.25.0 | mmcv-full>=1.5.0, \<=1.6.0 | mmcls>=0.20.1, \<=1.0.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.27.0'
3+
__version__ = '0.28.0'
44

55

66
def parse_version_info(version_str):

0 commit comments

Comments
 (0)