Skip to content

Commit 1224480

Browse files
authored
Bump to v0.17.0 (open-mmlab#841)
1 parent 2825efe commit 1224480

File tree

7 files changed

+38
-5
lines changed

7 files changed

+38
-5
lines changed

README.md

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

4949
## Changelog
5050

51-
v0.16.0 was released in 08/04/2021.
51+
v0.17.0 was released in 09/01/2021.
5252
Please refer to [changelog.md](docs/changelog.md) for details and release history.
5353

5454
## Benchmark and model zoo

README_zh-CN.md

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

4848
## 更新日志
4949

50-
最新的月度版本 v0.16.0 在 2021.08.04 发布。
50+
最新的月度版本 v0.17.0 在 2021.09.01 发布。
5151
如果想了解更多版本更新细节和历史信息,请阅读[更新日志](docs/changelog.md)
5252

5353
## 基准测试和模型库

docker/serve/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ ARG CUDA="10.1"
33
ARG CUDNN="7"
44
FROM pytorch/pytorch:${PYTORCH}-cuda${CUDA}-cudnn${CUDNN}-devel
55

6-
ARG MMCV="1.3.1"
7-
ARG MMSEG="0.13.0"
6+
ARG MMCV="1.3.12"
7+
ARG MMSEG="0.17.0"
88

99
ENV PYTHONUNBUFFERED TRUE
1010

docs/changelog.md

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

3+
### V0.17 (09/01/2021)
4+
5+
**Highlights**
6+
7+
- Support SegFormer
8+
- Support DPT
9+
- Support Dark Zurich and Nighttime Driving datasets
10+
- Support progressive evaluation
11+
12+
**New Features**
13+
14+
- Support SegFormer ([#599](https://github.com/open-mmlab/mmsegmentation/pull/599))
15+
- Support DPT ([#605](https://github.com/open-mmlab/mmsegmentation/pull/605))
16+
- Support Dark Zurich and Nighttime Driving datasets ([#815](https://github.com/open-mmlab/mmsegmentation/pull/815))
17+
- Support progressive evaluation ([#709](https://github.com/open-mmlab/mmsegmentation/pull/709))
18+
19+
**Improvements**
20+
21+
- Add multiscale_output interface and unittests for HRNet ([#830](https://github.com/open-mmlab/mmsegmentation/pull/830))
22+
- Support inherit cityscapes dataset ([#750](https://github.com/open-mmlab/mmsegmentation/pull/750))
23+
- Fix some typos in README.md ([#824](https://github.com/open-mmlab/mmsegmentation/pull/824))
24+
- Delete convert function and add instruction to ViT/Swin README.md ([#791](https://github.com/open-mmlab/mmsegmentation/pull/791))
25+
- Add vit/swin/mit convert weight scripts ([#783](https://github.com/open-mmlab/mmsegmentation/pull/783))
26+
- Add copyright files ([#796](https://github.com/open-mmlab/mmsegmentation/pull/796))
27+
28+
**Bug Fixes**
29+
30+
- Fix invalid checkpoint link in inference_demo.ipynb ([#814](https://github.com/open-mmlab/mmsegmentation/pull/814))
31+
- Ensure that items in dataset have the same order across multi machine ([#780](https://github.com/open-mmlab/mmsegmentation/pull/780))
32+
- Fix the log error ([#766](https://github.com/open-mmlab/mmsegmentation/pull/766))
33+
334
### V0.16 (08/04/2021)
435

536
**Highlights**

docs/get_started.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ The compatible MMSegmentation and MMCV versions are as below. Please install the
1212
| MMSegmentation version | MMCV version |
1313
|:-------------------:|:-------------------:|
1414
| master | mmcv-full>=1.3.7, <1.4.0 |
15+
| 0.17.0 | mmcv-full>=1.3.7, <1.4.0 |
1516
| 0.16.0 | mmcv-full>=1.3.7, <1.4.0 |
1617
| 0.15.0 | mmcv-full>=1.3.7, <1.4.0 |
1718
| 0.14.1 | mmcv-full>=1.3.7, <1.4.0 |

docs_zh-CN/get_started.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@
1212
| MMSegmentation 版本 | MMCV 版本 |
1313
|:-------------------:|:-------------------:|
1414
| master | mmcv-full>=1.3.7, <1.4.0 |
15+
| 0.17.0 | mmcv-full>=1.3.7, <1.4.0 |
1516
| 0.16.0 | mmcv-full>=1.3.7, <1.4.0 |
1617
| 0.15.0 | mmcv-full>=1.3.7, <1.4.0 |
1718
| 0.14.1 | 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.16.0'
3+
__version__ = '0.17.0'
44

55

66
def parse_version_info(version_str):

0 commit comments

Comments
 (0)