Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commit1471d1e

Browse files
authored
bumpv1.1.2 (#3339)
1 parent9c45a94 commit1471d1e

File tree

7 files changed

+56
-7
lines changed

7 files changed

+56
-7
lines changed

‎README.md‎

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -89,12 +89,11 @@ MMSegmentation v1.x brings remarkable improvements over the 0.x release, offerin
8989

9090
##What's New
9191

92-
v1.1.1 was released on07/24/2023.
92+
v1.1.2 was released on09/20/2023.
9393
Please refer to[changelog.md](docs/en/notes/changelog.md) for details and release history.
9494

95-
- Support 24 medical image datasets in[projects](./projects/medical/).
96-
- Add GDAL backend and support remote sensing datasets[LEVIR-CD](https://github.com/open-mmlab/mmsegmentation/pull/2903).
97-
- Support[DDRNet](https://github.com/open-mmlab/mmsegmentation/pull/2855).
95+
- Support monocular depth estimation task, please refer to[VPD](configs/vpd/README.md) for more details.
96+
- Add new projects:[CAT-Seg](projects/CAT-Seg/README.md),[PP-MobileSeg](projects/pp_mobileseg/README.md),[AdaBins](projects/Adabins/README.md)
9897

9998
##Installation
10099

@@ -230,6 +229,7 @@ Results and models are available in the [model zoo](docs/en/model_zoo.md).
230229
-[x][Mask2Former (CVPR'2022)](configs/mask2former)
231230
-[x][PIDNet (ArXiv'2022)](configs/pidnet)
232231
-[x][DDRNet (T-ITS'2022)](configs/ddrnet)
232+
-[x][VPD (ICCV'2023)](configs/vpd)
233233

234234
</details>
235235

@@ -255,6 +255,7 @@ Results and models are available in the [model zoo](docs/en/model_zoo.md).
255255
-[x][Mapillary Vistas](https://github.com/open-mmlab/mmsegmentation/blob/main/docs/en/user_guides/2_dataset_prepare.md#mapillary-vistas-datasets)
256256
-[x][LEVIR-CD](https://github.com/open-mmlab/mmsegmentation/blob/main/docs/en/user_guides/2_dataset_prepare.md#levir-cd)
257257
-[x][BDD100K](https://github.com/open-mmlab/mmsegmentation/blob/main/docs/en/user_guides/2_dataset_prepare.md#bdd100K)
258+
-[x][NYU](https://github.com/open-mmlab/mmsegmentation/blob/main/docs/en/user_guides/2_dataset_prepare.md#nyu)
258259

259260
</details>
260261

‎README_zh-CN.md‎

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ MMSegmentation v1.x 在 0.x 版本的基础上有了显著的提升,提供了
8888

8989
##更新日志
9090

91-
最新版本 v1.1.1 在 2023.07.24 发布。
91+
最新版本 v1.1.2 在 2023.09.20 发布。
9292
如果想了解更多版本更新细节和历史信息,请阅读[更新日志](docs/en/notes/changelog.md)
9393

9494
##安装
@@ -224,6 +224,7 @@ MMSegmentation v1.x 在 0.x 版本的基础上有了显著的提升,提供了
224224
-[x][Mask2Former (CVPR'2022)](configs/mask2former)
225225
-[x][PIDNet (ArXiv'2022)](configs/pidnet)
226226
-[x][DDRNet (T-ITS'2022)](configs/ddrnet)
227+
-[x][VPD (ICCV'2023)](configs/vpd)
227228

228229
</details>
229230

@@ -249,6 +250,7 @@ MMSegmentation v1.x 在 0.x 版本的基础上有了显著的提升,提供了
249250
-[x][Mapillary Vistas](https://github.com/open-mmlab/mmsegmentation/blob/main/docs/zh_cn/user_guides/2_dataset_prepare.md#mapillary-vistas-datasets)
250251
-[x][LEVIR-CD](https://github.com/open-mmlab/mmsegmentation/blob/main/docs/zh_cn/user_guides/2_dataset_prepare.md#levir-cd)
251252
-[x][BDD100K](https://github.com/open-mmlab/mmsegmentation/blob/main/docs/zh_cn/user_guides/2_dataset_prepare.md#bdd100K)
253+
-[x][NYU](https://github.com/open-mmlab/mmsegmentation/blob/main/docs/en/user_guides/2_dataset_prepare.md#nyu)
252254

253255
</details>
254256

‎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="2.0.1"
7-
ARG MMSEG="1.1.1"
7+
ARG MMSEG="1.1.2"
88

99
ENV PYTHONUNBUFFERED TRUE
1010

‎docs/en/notes/changelog.md‎

Lines changed: 44 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,49 @@
11
#Changelog of v1.x
22

3+
##v1.1.2(09/20/2023)
4+
5+
###Features
6+
7+
- Add semantic label to the segmentation visualization results ([#3229](https://github.com/open-mmlab/mmsegmentation/pull/3229))
8+
- Support NYU depth estimation dataset ([#3269](https://github.com/open-mmlab/mmsegmentation/pull/3269))
9+
- Support Kullback-Leibler divergence Loss ([#3242](https://github.com/open-mmlab/mmsegmentation/pull/3242))
10+
- Support depth metrics ([#3297](https://github.com/open-mmlab/mmsegmentation/pull/3297))
11+
- Support Remote sensing inferencer ([#3131](https://github.com/open-mmlab/mmsegmentation/pull/3131))
12+
- Support VPD Depth Estimator ((#3321)(https://github.com/open-mmlab/mmsegmentation/pull/3321))
13+
- Support inference and visualization of VPD ([#3331](https://github.com/open-mmlab/mmsegmentation/pull/3331))
14+
- Support using the pytorch-grad-cam tool to visualize Class Activation Maps (CAM) ([#3324](https://github.com/open-mmlab/mmsegmentation/pull/3324))
15+
16+
###New projects
17+
18+
- Support PP-Mobileseg ([#3239](https://github.com/open-mmlab/mmsegmentation/pull/3239))
19+
- Support CAT-Seg (CVPR'2023) ([#3098](https://github.com/open-mmlab/mmsegmentation/pull/3098))
20+
- Support Adabins ([#3257](https://github.com/open-mmlab/mmsegmentation/pull/3257))
21+
- Add pp_mobileseg onnx inference script ([#3268](https://github.com/open-mmlab/mmsegmentation/pull/3268))
22+
23+
###Bug Fixes
24+
25+
- Fix module PascalContextDataset ([#3235](https://github.com/open-mmlab/mmsegmentation/pull/3235))
26+
- Fix one hot encoding for dice loss ([#3237](https://github.com/open-mmlab/mmsegmentation/pull/3237))
27+
- Fix confusion_matrix.py ([#3291](https://github.com/open-mmlab/mmsegmentation/pull/3291))
28+
- Fix inferencer visualization ([#3333](https://github.com/open-mmlab/mmsegmentation/pull/3333))
29+
30+
###Documentation
31+
32+
- Translate doc for docs/zh_cn/user_guides/5_deployment.md ([#3281](https://github.com/open-mmlab/mmsegmentation/pull/3281))
33+
34+
##New Contributors
35+
36+
-@angiecao made their first contribution inhttps://github.com/open-mmlab/mmsegmentation/pull/3235
37+
-@yeedrag made their first contribution inhttps://github.com/open-mmlab/mmsegmentation/pull/3237
38+
-@Yang-Changhui made their first contribution inhttps://github.com/open-mmlab/mmsegmentation/pull/3239
39+
-@ooooo-create made their first contribution inhttps://github.com/open-mmlab/mmsegmentation/pull/3261
40+
-@Ben-Louis made their first contribution inhttps://github.com/open-mmlab/mmsegmentation/pull/3269
41+
-@crazysteeaam made their first contribution inhttps://github.com/open-mmlab/mmsegmentation/pull/3284
42+
-@zen0no made their first contribution inhttps://github.com/open-mmlab/mmsegmentation/pull/3242
43+
-@XiandongWang made their first contribution inhttps://github.com/open-mmlab/mmsegmentation/pull/3291
44+
-@ZhaoQiiii made their first contribution inhttps://github.com/open-mmlab/mmsegmentation/pull/3332
45+
-@zhen6618 made their first contribution inhttps://github.com/open-mmlab/mmsegmentation/pull/3324
46+
347
##v1.1.1(07/24/2023)
448

549
###Features

‎docs/en/notes/faq.md‎

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ The compatible MMSegmentation, MMCV and MMEngine versions are as below. Please i
1010
| :--------------------:| :----------------------------:| :---------------:| :---------------------------------:| :----------------------------:|
1111
| dev-1.x branch| mmcv >= 2.0.0| MMEngine >= 0.7.4| mmpretrain>=1.0.0rc7| mmdet >= 3.0.0|
1212
| main branch| mmcv >= 2.0.0| MMEngine >= 0.7.4| mmpretrain>=1.0.0rc7| mmdet >= 3.0.0|
13+
| 1.1.2| mmcv >= 2.0.0| MMEngine >= 0.7.4| mmpretrain>=1.0.0rc7| mmdet >= 3.0.0|
1314
| 1.1.1| mmcv >= 2.0.0| MMEngine >= 0.7.4| mmpretrain>=1.0.0rc7| mmdet >= 3.0.0|
1415
| 1.1.0| mmcv >= 2.0.0| MMEngine >= 0.7.4| mmpretrain>=1.0.0rc7| mmdet >= 3.0.0|
1516
| 1.0.0| mmcv >= 2.0.0rc4| MMEngine >= 0.7.1| mmcls==1.0.0rc6| mmdet >= 3.0.0|

‎docs/zh_cn/notes/faq.md‎

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@
1010
| :--------------------:| :----------------------------:| :---------------:| :---------------------------------:| :----------------------------:|
1111
| dev-1.x branch| mmcv >= 2.0.0| MMEngine >= 0.7.4| mmpretrain>=1.0.0rc7| mmdet >= 3.0.0|
1212
| main branch| mmcv >= 2.0.0| MMEngine >= 0.7.4| mmpretrain>=1.0.0rc7| mmdet >= 3.0.0|
13+
| 1.1.2| mmcv >= 2.0.0| MMEngine >= 0.7.4| mmpretrain>=1.0.0rc7| mmdet >= 3.0.0|
1314
| 1.1.1| mmcv >= 2.0.0| MMEngine >= 0.7.4| mmpretrain>=1.0.0rc7| mmdet >= 3.0.0|
1415
| 1.1.0| mmcv >= 2.0.0| MMEngine >= 0.7.4| mmpretrain>=1.0.0rc7| mmdet >= 3.0.0|
1516
| 1.0.0| mmcv >= 2.0.0rc4| MMEngine >= 0.7.1| mmcls==1.0.0rc6| mmdet >= 3.0.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__='1.1.1'
3+
__version__='1.1.2'
44

55

66
defparse_version_info(version_str):

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp