Skip to content

Commit b9da8a1

Browse files
authored
Bump to v0.15.0 (open-mmlab#669)
* Bump to v0.15.0 * fixed version
1 parent 0529952 commit b9da8a1

File tree

7 files changed

+38
-4
lines changed

7 files changed

+38
-4
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.14.1 was released in 06/16/2021.
51+
v0.15.0 was released in 07/04/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.11.0 在 2021.02.02 发布。
50+
最新的月度版本 v0.15.0 在 2021.07.04 发布。
5151
如果想了解更多版本更新细节和历史信息,请阅读[更新日志](docs/changelog.md)
5252

5353
## 基准测试和模型库

docs/changelog.md

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

3+
### V0.15 (07/04/2021)
4+
5+
**Highlights**
6+
7+
- Support ViT, SETR, and Swin-Transformer
8+
- Add Chinese documentation
9+
- Unified parameter initialization
10+
11+
**Bug Fixes**
12+
13+
- Fix typo and links ([#608](https://github.com/open-mmlab/mmsegmentation/pull/608))
14+
- Fix Dockerfile ([#607](https://github.com/open-mmlab/mmsegmentation/pull/607))
15+
- Fix ViT init ([#609](https://github.com/open-mmlab/mmsegmentation/pull/609))
16+
- Fix mmcv version compatible table ([#658](https://github.com/open-mmlab/mmsegmentation/pull/658))
17+
- Fix model links of DMNEt ([#660](https://github.com/open-mmlab/mmsegmentation/pull/660))
18+
19+
**New Features**
20+
21+
- Support loading DeiT weights ([#538](https://github.com/open-mmlab/mmsegmentation/pull/538))
22+
- Support SETR ([#531](https://github.com/open-mmlab/mmsegmentation/pull/531), [#635](https://github.com/open-mmlab/mmsegmentation/pull/635))
23+
- Add config and models for ViT backbone with UperHead ([#520](https://github.com/open-mmlab/mmsegmentation/pull/531), [#635](https://github.com/open-mmlab/mmsegmentation/pull/520))
24+
- Support Swin-Transformer ([#511](https://github.com/open-mmlab/mmsegmentation/pull/511))
25+
- Add higher accuracy FastSCNN ([#606](https://github.com/open-mmlab/mmsegmentation/pull/606))
26+
- Add Chinese documentation ([#666](https://github.com/open-mmlab/mmsegmentation/pull/666))
27+
28+
**Improvements**
29+
30+
- Unified parameter initialization ([#567](https://github.com/open-mmlab/mmsegmentation/pull/567))
31+
- Separate CUDA and CPU in github action CI ([#602](https://github.com/open-mmlab/mmsegmentation/pull/602))
32+
- Support persistent dataloader worker ([#646](https://github.com/open-mmlab/mmsegmentation/pull/646))
33+
- Update meta file fields ([#661](https://github.com/open-mmlab/mmsegmentation/pull/661), [#664](https://github.com/open-mmlab/mmsegmentation/pull/664))
34+
335
### V0.14 (06/02/2021)
436

537
**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.15.0 | mmcv-full>=1.3.7, <1.4.0 |
1516
| 0.14.1 | mmcv-full>=1.3.7, <1.4.0 |
1617
| 0.14.0 | mmcv-full>=1.3.1, <1.3.2 |
1718
| 0.13.0 | mmcv-full>=1.3.1, <1.3.2 |

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.15.0 | mmcv-full>=1.3.7, <1.4.0 |
1516
| 0.14.1 | mmcv-full>=1.3.7, <1.4.0 |
1617
| 0.14.0 | mmcv-full>=1.3.1, <1.4.0 |
1718
| 0.13.0 | mmcv-full>=1.3.1, <1.4.0 |

mmseg/datasets/builder.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -132,7 +132,7 @@ def build_dataloader(dataset,
132132
worker_init_fn, num_workers=num_workers, rank=rank,
133133
seed=seed) if seed is not None else None
134134

135-
if torch.__version__ >= '1.7.0':
135+
if torch.__version__ >= '1.8.0':
136136
data_loader = DataLoader(
137137
dataset,
138138
batch_size=batch_size,

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.14.1'
3+
__version__ = '0.15.0'
44

55

66
def parse_version_info(version_str):

0 commit comments

Comments
 (0)