Skip to content

Commit 34462a1

Browse files
Bump version to 3.0.0rc4 (#9374)
* Bump version to 3.0.0rc4 * update * update and rebase * minor fix * Update docs/en/notes/changelog.md Co-authored-by: RangiLyu <[email protected]> * update readme * update contributors * update * 'rebase' * 'update_data' * fix lint Co-authored-by: RangiLyu <[email protected]>
1 parent 7ea199e commit 34462a1

File tree

7 files changed

+63
-10
lines changed

7 files changed

+63
-10
lines changed

README.md

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -75,11 +75,11 @@ Apart from MMDetection, we also released [MMEngine](https://github.com/open-mmla
7575

7676
## What's New
7777

78-
**v3.0.0rc3** was released in 4/11/2022:
78+
**v3.0.0rc4** was released in 25/11/2022:
7979

80-
- Support [CrowdDet](configs/crowddet/) and EIoULoss
81-
- Support training detection models in Detectron2, see [examples](configs/misc)
82-
- Refactor [Fast R-CNN](configs/fast_rcnn/)
80+
- Support [CondInst](https://arxiv.org/abs/2003.05664)
81+
- Add [`projects/`](./projects/) folder and give an [example](./projects/example_project/README.md) for communities to contribute their projects.
82+
- Support [SparseInst](https://arxiv.org/abs/2203.12827) in [`projects`](./projects/SparseInst/README.md)
8383

8484
## Installation
8585

@@ -204,6 +204,8 @@ Results and models are available in the [model zoo](docs/en/model_zoo.md).
204204
<li><a href="configs/scnet">SCNet (AAAI'2021)</a></li>
205205
<li><a href="configs/queryinst">QueryInst (ICCV'2021)</a></li>
206206
<li><a href="configs/mask2former">Mask2Former (ArXiv'2021)</a></li>
207+
<li><a href="configs/condinst">CondInst (ECCV 2020)</a></li>
208+
<li><a href="projects/SparseInst">SparseInst (CVPR 2022)</a></li>
207209
</ul>
208210
</td>
209211
<td>

README_zh-CN.md

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -74,11 +74,11 @@ MMDetection 是一个基于 PyTorch 的目标检测开源工具箱。它是 [Ope
7474

7575
## 最新进展
7676

77-
**v3.0.0rc3** 版本已经在 2022.11.4 发布:
77+
**v3.0.0rc4** 版本已经在 2022.11.25 发布:
7878

79-
- 支持了 [CrowdDet](configs/crowddet/) 和 EIoULoss
80-
- 支持训练 Detectron2 中的检测模型并提供了三个[样例](configs/misc)
81-
- 重构了 [Fast R-CNN](configs/fast_rcnn/)
79+
- 支持了 [CondInst](https://arxiv.org/abs/2003.05664)
80+
- 添加了 [`projects/`](./projects/) 文件夹并提供了[示例](./projects/example_project/README.md),方便社区快速地贡献相关项目
81+
- [`projects`](./projects/SparseInst/README.md) 中支持了 [SparseInst](https://arxiv.org/abs/2203.12827)
8282

8383
## 安装
8484

@@ -205,6 +205,8 @@ MMDetection 是一个基于 PyTorch 的目标检测开源工具箱。它是 [Ope
205205
<li><a href="configs/scnet">SCNet (AAAI'2021)</a></li>
206206
<li><a href="configs/queryinst">QueryInst (ICCV'2021)</a></li>
207207
<li><a href="configs/mask2former">Mask2Former (ArXiv'2021)</a></li>
208+
<li><a href="configs/condinst">CondInst (ECCV 2020)</a></li>
209+
<li><a href="projects/SparseInst">SparseInst (CVPR 2022)</a></li>
208210
</ul>
209211
</td>
210212
<td>

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.0rc1"
7-
ARG MMDET="3.0.0rc3"
7+
ARG MMDET="3.0.0rc4"
88

99
ENV PYTHONUNBUFFERED TRUE
1010

docs/en/notes/changelog.md

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

3+
## v3.0.0rc4 (23/11/2022)
4+
5+
### Highlights
6+
7+
- Support [CondInst](https://arxiv.org/abs/2003.05664)
8+
- Add `projects/` folder, which will be a place for some experimental models/features.
9+
- Support [SparseInst](https://arxiv.org/abs/2203.12827) in [`projects`](./projects/SparseInst/README.md)
10+
11+
### New Features
12+
13+
- Support [CondInst](https://arxiv.org/abs/2003.05664) (#9223)
14+
- Add `projects/` folder, which will be a place for some experimental models/features (#9341)
15+
- Support [SparseInst](https://arxiv.org/abs/2203.12827) in [`projects`](./projects/SparseInst/README.md) (#9377)
16+
17+
### Bug Fixes
18+
19+
- Fix `pixel_decoder_type` discrimination in MaskFormer Head. (#9176)
20+
- Fix wrong padding value in cached MixUp (#9259)
21+
- Rename `utils/typing.py` to `utils/typing_utils.py` to fix `collect_env` error (#9265)
22+
- Fix resume arg conflict (#9287)
23+
- Fix the configs of Faster R-CNN with caffe backbone (#9319)
24+
- Fix torchserve and update related documentation (#9343)
25+
- Fix bbox refine bug with sigmooid activation (#9538)
26+
27+
### Improvements
28+
29+
- Update the docs of GIoU Loss in README (#8810)
30+
- Handle dataset wrapper in `inference_detector` (#9144)
31+
- Update the type of `counts` in COCO’s compressed RLE (#9274)
32+
- Support saving config file in `print_config` (#9276)
33+
- Update docs about video inference (#9305)
34+
- Update guide about model deployment (#9344)
35+
- Fix doc typos of useful tools (#9177)
36+
- Allow to resume from specific checkpoint in CLI (#9284)
37+
- Update FAQ about windows installation issues of pycocotools (#9292)
38+
39+
### New Contributors
40+
41+
- @Daa98 made their first contribution in <https://github.com/open-mmlab/mmdetection/pull/9274>
42+
- @lvhan028 made their first contribution in <https://github.com/open-mmlab/mmdetection/pull/9344>
43+
44+
### Contributors
45+
46+
A total of 12 developers contributed to this release.
47+
48+
Thanks @sanbuphy, @Czm369, @Daa98, @jbwang1997, @BIGWangYuDong, @JosonChan1998, @lvhan028, @RunningLeon, @RangiLyu, @Daa98, @ZwwWayne, @hhaAndroid
49+
350
## v3.0.0rc3 (4/11/2022)
451

552
Upgrade the minimum version requirement of MMEngine to 0.3.0 to use `ignore_key` of `ConcatDataset` for training VOC datasets (#9058)

docs/en/notes/faq.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ We list some common troubles faced by many users and their corresponding solutio
1111
| MMDetection version | MMCV version | MMEngine version |
1212
| :-----------------: | :---------------------: | :----------------------: |
1313
| 3.x | mmcv>=2.0.0rc1, \<2.1.0 | mmengine>=0.3.0, \<1.0.0 |
14+
| 3.0.0rc4 | mmcv>=2.0.0rc1, \<2.1.0 | mmengine>=0.3.0, \<1.0.0 |
1415
| 3.0.0rc3 | mmcv>=2.0.0rc1, \<2.1.0 | mmengine>=0.3.0, \<1.0.0 |
1516
| 3.0.0rc2 | mmcv>=2.0.0rc1, \<2.1.0 | mmengine>=0.1.0, \<1.0.0 |
1617
| 3.0.0rc1 | mmcv>=2.0.0rc1, \<2.1.0 | mmengine>=0.1.0, \<1.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
| MMDetection 版本 | MMCV 版本 | MMEngine 版本 |
1212
| 3.x | mmcv>=2.0.0rc1, \<2.1.0 | mmengine>=0.3.0, \<1.0.0 |
13+
| 3.0.0rc4 | mmcv>=2.0.0rc1, \<2.1.0 | mmengine>=0.3.0, \<1.0.0 |
1314
| 3.0.0rc3 | mmcv>=2.0.0rc1, \<2.1.0 | mmengine>=0.3.0, \<1.0.0 |
1415
| 3.0.0rc2 | mmcv>=2.0.0rc1, \<2.1.0 | mmengine>=0.1.0, \<1.0.0 |
1516
| 3.0.0rc1 | mmcv>=2.0.0rc1, \<2.1.0 | mmengine>=0.1.0, \<1.0.0 |

mmdet/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Copyright (c) OpenMMLab. All rights reserved.
22

3-
__version__ = '3.0.0rc3'
3+
__version__ = '3.0.0rc4'
44
short_version = __version__
55

66

0 commit comments

Comments
 (0)