File tree Expand file tree Collapse file tree 7 files changed +38
-5
lines changed Expand file tree Collapse file tree 7 files changed +38
-5
lines changed Original file line number Diff line number Diff line change @@ -48,7 +48,7 @@ This project is released under the [Apache 2.0 license](LICENSE).
48
48
49
49
## Changelog
50
50
51
- v0.16 .0 was released in 08/04 /2021.
51
+ v0.17 .0 was released in 09/01 /2021.
52
52
Please refer to [ changelog.md] ( docs/changelog.md ) for details and release history.
53
53
54
54
## Benchmark and model zoo
Original file line number Diff line number Diff line change @@ -47,7 +47,7 @@ MMSegmentation 是一个基于 PyTorch 的语义分割开源工具箱。它是 O
47
47
48
48
## 更新日志
49
49
50
- 最新的月度版本 v0.16 .0 在 2021.08.04 发布。
50
+ 最新的月度版本 v0.17 .0 在 2021.09.01 发布。
51
51
如果想了解更多版本更新细节和历史信息,请阅读[ 更新日志] ( docs/changelog.md ) 。
52
52
53
53
## 基准测试和模型库
Original file line number Diff line number Diff line change @@ -3,8 +3,8 @@ ARG CUDA="10.1"
3
3
ARG CUDNN="7"
4
4
FROM pytorch/pytorch:${PYTORCH}-cuda${CUDA}-cudnn${CUDNN}-devel
5
5
6
- ARG MMCV="1.3.1 "
7
- ARG MMSEG="0.13 .0"
6
+ ARG MMCV="1.3.12 "
7
+ ARG MMSEG="0.17 .0"
8
8
9
9
ENV PYTHONUNBUFFERED TRUE
10
10
Original file line number Diff line number Diff line change 1
1
## Changelog
2
2
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
+
3
34
### V0.16 (08/04/2021)
4
35
5
36
** Highlights**
Original file line number Diff line number Diff line change @@ -12,6 +12,7 @@ The compatible MMSegmentation and MMCV versions are as below. Please install the
12
12
| MMSegmentation version | MMCV version |
13
13
| :-------------------:| :-------------------:|
14
14
| master | mmcv-full>=1.3.7, <1.4.0 |
15
+ | 0.17.0 | mmcv-full>=1.3.7, <1.4.0 |
15
16
| 0.16.0 | mmcv-full>=1.3.7, <1.4.0 |
16
17
| 0.15.0 | mmcv-full>=1.3.7, <1.4.0 |
17
18
| 0.14.1 | mmcv-full>=1.3.7, <1.4.0 |
Original file line number Diff line number Diff line change 12
12
| MMSegmentation 版本 | MMCV 版本 |
13
13
| :-------------------:| :-------------------:|
14
14
| master | mmcv-full>=1.3.7, <1.4.0 |
15
+ | 0.17.0 | mmcv-full>=1.3.7, <1.4.0 |
15
16
| 0.16.0 | mmcv-full>=1.3.7, <1.4.0 |
16
17
| 0.15.0 | mmcv-full>=1.3.7, <1.4.0 |
17
18
| 0.14.1 | mmcv-full>=1.3.7, <1.4.0 |
Original file line number Diff line number Diff line change 1
1
# Copyright (c) Open-MMLab. All rights reserved.
2
2
3
- __version__ = '0.16 .0'
3
+ __version__ = '0.17 .0'
4
4
5
5
6
6
def parse_version_info (version_str ):
You can’t perform that action at this time.
0 commit comments