Skip to content

Commit c4c0c1f

Browse files
Bump version to v0.24.0 (open-mmlab#1533)
* [WIP] Bump version to v0.24.0 * changelog * Update docs/en/changelog.md Co-authored-by: MengzhangLI <[email protected]> * Update docs/en/changelog.md Co-authored-by: MengzhangLI <[email protected]> * Update docs/en/changelog.md Co-authored-by: MengzhangLI <[email protected]> * Update docs/en/changelog.md Co-authored-by: MengzhangLI <[email protected]> * Update docs/en/changelog.md Co-authored-by: MengzhangLI <[email protected]> * Update docs/en/changelog.md Co-authored-by: MengzhangLI <[email protected]> * words * typo Co-authored-by: MengzhangLI <[email protected]>
1 parent 061b5b4 commit c4c0c1f

File tree

7 files changed

+69
-4
lines changed

7 files changed

+69
-4
lines changed

README.md

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

6767
## Changelog
6868

69-
v0.23.0 was released in 4/1/2022.
69+
v0.24.0 was released in 4/29/2022.
7070
Please refer to [changelog.md](docs/en/changelog.md) for details and release history.
7171

7272
## Benchmark and model zoo

README_zh-CN.md

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

6666
## 更新日志
6767

68-
最新版本 v0.23.0 在 2022.4.1 发布。
68+
最新版本 v0.24.0 在 2022.4.29 发布。
6969
如果想了解更多版本更新细节和历史信息,请阅读[更新日志](docs/en/changelog.md)
7070

7171
## 基准测试和模型库

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.4.8"
7-
ARG MMSEG="0.23.0"
7+
ARG MMSEG="0.24.0"
88

99
ENV PYTHONUNBUFFERED TRUE
1010

docs/en/changelog.md

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

3+
### V0.24.0 (4/29/2022)
4+
5+
**Highlights**
6+
7+
- Support MAE: Masked Autoencoders Are Scalable Vision Learners
8+
- Support Resnet strikes back
9+
10+
**New Features**
11+
12+
- Support MAE: Masked Autoencoders Are Scalable Vision Learners ([1307](https://github.com/open-mmlab/mmsegmentation/pull/1307), [1523](https://github.com/open-mmlab/mmsegmentation/pull/1523))
13+
- Support Resnet strikes back ([1390](https://github.com/open-mmlab/mmsegmentation/pull/1390))
14+
- Support extra dataloader settings in configs ([1435](https://github.com/open-mmlab/mmsegmentation/pull/1435))
15+
16+
**Bug Fixes**
17+
18+
- Fix input previous results for the last cascade_decode_head ([#1450](https://github.com/open-mmlab/mmsegmentation/pull/1450))
19+
- Fix validation loss logging ([#1494](https://github.com/open-mmlab/mmsegmentation/pull/1494))
20+
- Fix the bug in binary_cross_entropy ([1527](https://github.com/open-mmlab/mmsegmentation/pull/1527))
21+
- Support single channel prediction for Binary Cross Entropy Loss ([#1454](https://github.com/open-mmlab/mmsegmentation/pull/1454))
22+
- Fix potential bugs in accuracy.py ([1496](https://github.com/open-mmlab/mmsegmentation/pull/1496))
23+
- Avoid converting label ids twice by label map during evaluation ([1417](https://github.com/open-mmlab/mmsegmentation/pull/1417))
24+
- Fix bug about label_map ([1445](https://github.com/open-mmlab/mmsegmentation/pull/1445))
25+
- Fix image save path bug in Windows ([1423](https://github.com/open-mmlab/mmsegmentation/pull/1423))
26+
- Fix MMSegmentation Colab demo ([1501](https://github.com/open-mmlab/mmsegmentation/pull/1501), [1452](https://github.com/open-mmlab/mmsegmentation/pull/1452))
27+
- Migrate azure blob for beit checkpoints ([1503](https://github.com/open-mmlab/mmsegmentation/pull/1503))
28+
- Fix bug in `tools/analyse_logs.py` caused by wrong plot_iter in some cases ([1428](https://github.com/open-mmlab/mmsegmentation/pull/1428))
29+
30+
**Improvements**
31+
32+
- Merge BEiT and ConvNext's LR decay optimizer constructors ([#1438](https://github.com/open-mmlab/mmsegmentation/pull/1438))
33+
- Register optimizer constructor with mmseg ([#1456](https://github.com/open-mmlab/mmsegmentation/pull/1456))
34+
- Refactor transformer encode layer in ViT and BEiT backbone ([#1481](https://github.com/open-mmlab/mmsegmentation/pull/1481))
35+
- Add `build_pos_embed` and `build_layers` for BEiT ([1517](https://github.com/open-mmlab/mmsegmentation/pull/1517))
36+
- Add `with_cp` to mit and vit ([1431](https://github.com/open-mmlab/mmsegmentation/pull/1431))
37+
- Fix inconsistent dtype of `seg_label` in stdc decode ([1463](https://github.com/open-mmlab/mmsegmentation/pull/1463))
38+
- Delete random seed for training in `dist_train.sh` ([1519](https://github.com/open-mmlab/mmsegmentation/pull/1519))
39+
- Revise high `workers_per_gpus` in config file ([#1506](https://github.com/open-mmlab/mmsegmentation/pull/1506))
40+
- Add GPG keys and del mmcv version in Dockerfile ([1534](https://github.com/open-mmlab/mmsegmentation/pull/1534))
41+
- Update checkpoint for model in deeplabv3plus ([#1487](https://github.com/open-mmlab/mmsegmentation/pull/1487))
42+
- Add `DistSamplerSeedHook` to set epoch number to dataloader when runner is `EpochBasedRunner` ([1449](https://github.com/open-mmlab/mmsegmentation/pull/1449))
43+
- Provide URLs of Swin Transformer pretrained models ([1389](https://github.com/open-mmlab/mmsegmentation/pull/1389))
44+
- Updating Dockerfiles From Docker Directory and `get_started.md` to reach latest stable version of Python, PyTorch and MMCV ([1446](https://github.com/open-mmlab/mmsegmentation/pull/1446))
45+
46+
**Documentation**
47+
48+
- Add more clearly statement of CPU training/inference ([1518](https://github.com/open-mmlab/mmsegmentation/pull/1518))
49+
50+
**Contributors**
51+
52+
* @jiangyitong made their first contribution in https://github.com/open-mmlab/mmsegmentation/pull/1431
53+
* @kahkeng made their first contribution in https://github.com/open-mmlab/mmsegmentation/pull/1447
54+
* @Nourollah made their first contribution in https://github.com/open-mmlab/mmsegmentation/pull/1446
55+
* @androbaza made their first contribution in https://github.com/open-mmlab/mmsegmentation/pull/1452
56+
* @Yzichen made their first contribution in https://github.com/open-mmlab/mmsegmentation/pull/1445
57+
* @whu-pzhang made their first contribution in https://github.com/open-mmlab/mmsegmentation/pull/1423
58+
* @panfeng-hover made their first contribution in https://github.com/open-mmlab/mmsegmentation/pull/1417
59+
* @Johnson-Wang made their first contribution in https://github.com/open-mmlab/mmsegmentation/pull/1496
60+
* @jere357 made their first contribution in https://github.com/open-mmlab/mmsegmentation/pull/1460
61+
* @mfernezir made their first contribution in https://github.com/open-mmlab/mmsegmentation/pull/1494
62+
* @donglixp made their first contribution in https://github.com/open-mmlab/mmsegmentation/pull/1503
63+
* @YuanLiuuuuuu made their first contribution in https://github.com/open-mmlab/mmsegmentation/pull/1307
64+
* @Dawn-bin made their first contribution in https://github.com/open-mmlab/mmsegmentation/pull/1527
65+
366
### V0.23.0 (4/1/2022)
467

568
**Highlights**

docs/en/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 | MMClassification version |
1313
|:----------------------:|:--------------------------:|:------------------------:|
1414
| master | mmcv-full>=1.4.4, <=1.6.0 | mmcls>=0.20.1, <=1.0.0 |
15+
| 0.24.0 | mmcv-full>=1.4.4, <=1.6.0 | mmcls>=0.20.1, <=1.0.0 |
1516
| 0.23.0 | mmcv-full>=1.4.4, <=1.6.0 | mmcls>=0.20.1, <=1.0.0 |
1617
| 0.22.0 | mmcv-full>=1.4.4, <=1.6.0 | mmcls>=0.20.1, <=1.0.0 |
1718
| 0.21.1 | mmcv-full>=1.4.4, <=1.6.0 | Not required |

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 版本 | MMClassification 版本 |
1313
|:-----------------:|:--------------------------:|:------------------------:|
1414
| master | mmcv-full>=1.4.4, <=1.6.0 | mmcls>=0.20.1, <=1.0.0 |
15+
| 0.24.0 | mmcv-full>=1.4.4, <=1.6.0 | mmcls>=0.20.1, <=1.0.0 |
1516
| 0.23.0 | mmcv-full>=1.4.4, <=1.6.0 | mmcls>=0.20.1, <=1.0.0 |
1617
| 0.22.0 | mmcv-full>=1.4.4, <=1.6.0 | mmcls>=0.20.1, <=1.0.0 |
1718
| 0.21.1 | mmcv-full>=1.4.4, <=1.6.0 | Not required |

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.23.0'
3+
__version__ = '0.24.0'
44

55

66
def parse_version_info(version_str):

0 commit comments

Comments
 (0)