parent
0529952270
commit
b9da8a176c
|
@ -48,7 +48,7 @@ This project is released under the [Apache 2.0 license](LICENSE).
|
|||
|
||||
## Changelog
|
||||
|
||||
v0.14.1 was released in 06/16/2021.
|
||||
v0.15.0 was released in 07/04/2021.
|
||||
Please refer to [changelog.md](docs/changelog.md) for details and release history.
|
||||
|
||||
## Benchmark and model zoo
|
||||
|
|
|
@ -47,7 +47,7 @@ MMSegmentation 是一个基于 PyTorch 的语义分割开源工具箱。它是 O
|
|||
|
||||
## 更新日志
|
||||
|
||||
最新的月度版本 v0.11.0 在 2021.02.02 发布。
|
||||
最新的月度版本 v0.15.0 在 2021.07.04 发布。
|
||||
如果想了解更多版本更新细节和历史信息,请阅读[更新日志](docs/changelog.md)。
|
||||
|
||||
## 基准测试和模型库
|
||||
|
|
|
@ -1,5 +1,37 @@
|
|||
## Changelog
|
||||
|
||||
### V0.15 (07/04/2021)
|
||||
|
||||
**Highlights**
|
||||
|
||||
- Support ViT, SETR, and Swin-Transformer
|
||||
- Add Chinese documentation
|
||||
- Unified parameter initialization
|
||||
|
||||
**Bug Fixes**
|
||||
|
||||
- Fix typo and links ([#608](https://github.com/open-mmlab/mmsegmentation/pull/608))
|
||||
- Fix Dockerfile ([#607](https://github.com/open-mmlab/mmsegmentation/pull/607))
|
||||
- Fix ViT init ([#609](https://github.com/open-mmlab/mmsegmentation/pull/609))
|
||||
- Fix mmcv version compatible table ([#658](https://github.com/open-mmlab/mmsegmentation/pull/658))
|
||||
- Fix model links of DMNEt ([#660](https://github.com/open-mmlab/mmsegmentation/pull/660))
|
||||
|
||||
**New Features**
|
||||
|
||||
- Support loading DeiT weights ([#538](https://github.com/open-mmlab/mmsegmentation/pull/538))
|
||||
- Support SETR ([#531](https://github.com/open-mmlab/mmsegmentation/pull/531), [#635](https://github.com/open-mmlab/mmsegmentation/pull/635))
|
||||
- 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))
|
||||
- Support Swin-Transformer ([#511](https://github.com/open-mmlab/mmsegmentation/pull/511))
|
||||
- Add higher accuracy FastSCNN ([#606](https://github.com/open-mmlab/mmsegmentation/pull/606))
|
||||
- Add Chinese documentation ([#666](https://github.com/open-mmlab/mmsegmentation/pull/666))
|
||||
|
||||
**Improvements**
|
||||
|
||||
- Unified parameter initialization ([#567](https://github.com/open-mmlab/mmsegmentation/pull/567))
|
||||
- Separate CUDA and CPU in github action CI ([#602](https://github.com/open-mmlab/mmsegmentation/pull/602))
|
||||
- Support persistent dataloader worker ([#646](https://github.com/open-mmlab/mmsegmentation/pull/646))
|
||||
- Update meta file fields ([#661](https://github.com/open-mmlab/mmsegmentation/pull/661), [#664](https://github.com/open-mmlab/mmsegmentation/pull/664))
|
||||
|
||||
### V0.14 (06/02/2021)
|
||||
|
||||
**Highlights**
|
||||
|
|
|
@ -12,6 +12,7 @@ The compatible MMSegmentation and MMCV versions are as below. Please install the
|
|||
| MMSegmentation version | MMCV version |
|
||||
|:-------------------:|:-------------------:|
|
||||
| master | mmcv-full>=1.3.7, <1.4.0 |
|
||||
| 0.15.0 | mmcv-full>=1.3.7, <1.4.0 |
|
||||
| 0.14.1 | mmcv-full>=1.3.7, <1.4.0 |
|
||||
| 0.14.0 | mmcv-full>=1.3.1, <1.3.2 |
|
||||
| 0.13.0 | mmcv-full>=1.3.1, <1.3.2 |
|
||||
|
|
|
@ -12,6 +12,7 @@
|
|||
| MMSegmentation 版本 | MMCV 版本 |
|
||||
|:-------------------:|:-------------------:|
|
||||
| master | mmcv-full>=1.3.7, <1.4.0 |
|
||||
| 0.15.0 | mmcv-full>=1.3.7, <1.4.0 |
|
||||
| 0.14.1 | mmcv-full>=1.3.7, <1.4.0 |
|
||||
| 0.14.0 | mmcv-full>=1.3.1, <1.4.0 |
|
||||
| 0.13.0 | mmcv-full>=1.3.1, <1.4.0 |
|
||||
|
|
|
@ -132,7 +132,7 @@ def build_dataloader(dataset,
|
|||
worker_init_fn, num_workers=num_workers, rank=rank,
|
||||
seed=seed) if seed is not None else None
|
||||
|
||||
if torch.__version__ >= '1.7.0':
|
||||
if torch.__version__ >= '1.8.0':
|
||||
data_loader = DataLoader(
|
||||
dataset,
|
||||
batch_size=batch_size,
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
# Copyright (c) Open-MMLab. All rights reserved.
|
||||
|
||||
__version__ = '0.14.1'
|
||||
__version__ = '0.15.0'
|
||||
|
||||
|
||||
def parse_version_info(version_str):
|
||||
|
|
Loading…
Reference in New Issue