Skip to content

Commit ea32503

Browse files
Bump version to 3.0.0rc3 (#9236)
* Add changelog with 3.0.0rc3 * Update docs/en/notes/changelog.md Co-authored-by: RangiLyu <[email protected]> * update * update * update * update readme Co-authored-by: RangiLyu <[email protected]>
1 parent d845a9f commit ea32503

File tree

8 files changed

+73
-15
lines changed

8 files changed

+73
-15
lines changed

README.md

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

7676
## What's New
7777

78-
**v3.0.0rc2** was released in 21/10/2022:
78+
**v3.0.0rc3** was released in 4/11/2022:
7979

80-
- Support [imagenet pre-training](configs/rtmdet/cspnext_imagenet_pretrain) for RTMDet's backbone.
81-
- Refactor standard roi head with `box type`.
80+
- Support training detection models in Detectron2
81+
- Support CrowdDet
82+
- Refactor Fast R-CNN
8283

8384
## Installation
8485

README_zh-CN.md

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

7575
## 最新进展
7676

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

79-
- 支持在 [ImageNet 上预训练](configs/rtmdet/cspnext_imagenet_pretrain) RTMDet 的骨干网络。
80-
- 重构 Standard RoI Head 以支持 `box type`
79+
- 支持训练 Detectron2 中的检测模型
80+
- 支持了 CrowdDet。
81+
- 重构了 Fast R-CNN。
8182

8283
## 安装
8384

docker/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ RUN apt-get update \
2929

3030
# Install MMEngine and MMCV
3131
RUN pip install openmim && \
32-
mim install "mmengine==0.2.0" "mmcv>=2.0.0rc1"
32+
mim install "mmengine==0.3.0" "mmcv>=2.0.0rc1"
3333

3434
# Install MMDetection
3535
RUN conda clean --all \

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

99
ENV PYTHONUNBUFFERED TRUE
1010

docs/en/notes/changelog.md

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

3+
## v3.0.0rc2 (4/11/2022)
4+
5+
Upgrade the minimum version of mmengine to 0.3.0 due to the addition of `ignore_key` in VOC `ConcatDataset` (#9058)
6+
7+
### Highlights
8+
9+
- Support training detection models in Detectron2 (#8672)
10+
- Support [CrowdDet](https://arxiv.org/abs/2003.09163) (#8744)
11+
- Refactor Fast R-CNN (#9132)
12+
13+
#### New Features
14+
15+
- Support training detection models in Detectron2 (#8672)
16+
- Support [CrowdDet](https://arxiv.org/abs/2003.09163) (#8744)
17+
- Support [EIoU Loss](https://ieeexplore.ieee.org/document/9429909) (#9086)
18+
19+
#### Bug Fixes
20+
21+
- Fix `XMLDataset` image size error (#9216)
22+
- Fix bugs of empty_instances when predicting without nms in roi_head (#9015)
23+
- Fix the config file of DETR (#9158)
24+
- Fix SOLOv2 cannot dealing with empty gt image (#9192)
25+
- Fix inference demo (#9153)
26+
- Add `ignore_key` in VOC `ConcatDataset` (#9058)
27+
- Fix dumping results issue in test scripts. (#9241)
28+
- Fix configs of training coco subsets on MMDet 3.x (#9225)
29+
- Fix corner2hbox of HorizontalBoxes for supporting empty bboxes (#9140)
30+
31+
#### Improvements
32+
33+
- Refactor Fast R-CNN (#9132)
34+
- Clean requirements of mmcv-full due to SyncBN (#9207)
35+
- Support training detection models in detectron2 (#8672)
36+
- Add `box_type` support for `DynamicSoftLabelAssigner` (#9179)
37+
- Make scipy as a default dependency in runtime (#9187)
38+
- Update eval_metric (#9062)
39+
- Add `seg_map_suffix` in `BaseDetDataset` (#9088)
40+
41+
## New Contributors
42+
43+
- @Wwupup made their first contribution in https://github.com/open-mmlab/mmdetection/pull/9086
44+
- @sanbuphy made their first contribution in https://github.com/open-mmlab/mmdetection/pull/9153
45+
- @cxiang26 made their first contribution in https://github.com/open-mmlab/mmdetection/pull/9158
46+
- @JosonChan1998 made their first contribution in https://github.com/open-mmlab/mmdetection/pull/9225
47+
48+
#### Contributors
49+
50+
A total of 13 developers contributed to this release.
51+
52+
Thanks @wanghonglie, @Wwupup, @sanbuphy, @BIGWangYuDong, @liuyanyi, @cxiang26, @jbwang1997, @ZwwWayne, @yuyoujiang, @RangiLyu, @hhaAndroid, @JosonChan1998, @Czm369
53+
354
## v3.0.0rc2 (21/10/2022)
455

556
### Highlights

docs/en/notes/faq.md

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,11 @@ We list some common troubles faced by many users and their corresponding solutio
1010

1111
| MMDetection version | MMCV version | MMEngine version |
1212
| :-----------------: | :---------------------: | :----------------------: |
13-
| 3.x | mmcv>=2.0.0rc1, \<2.1.0 | mmengine>=0.5.0, \<0.7.0 |
14-
| 3.0.0rc0 | mmcv>=2.0.0rc1, \<2.1.0 | mmengine>=0.5.0, \<0.7.0 |
13+
| 3.x | mmcv>=2.0.0rc1, \<2.1.0 | mmengine>=0.3.0, \<1.0.0 |
14+
| 3.0.0rc3 | mmcv>=2.0.0rc1, \<2.1.0 | mmengine>=0.3.0, \<1.0.0 |
15+
| 3.0.0rc2 | mmcv>=2.0.0rc1, \<2.1.0 | mmengine>=0.1.0, \<1.0.0 |
16+
| 3.0.0rc1 | mmcv>=2.0.0rc1, \<2.1.0 | mmengine>=0.1.0, \<1.0.0 |
17+
| 3.0.0rc0 | mmcv>=2.0.0rc1, \<2.1.0 | mmengine>=0.1.0, \<1.0.0 |
1518

1619
**Note:**
1720

docs/zh_cn/notes/faq.md

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,12 @@
88

99
MMDetection,MMEngine 和 MMCV 的版本兼容关系如下。请选择合适的版本避免安装错误 。
1010

11-
| MMDetection 版本 | MMCV 版本 | MMEngine 版本 |
12-
| :--------------: | :---------------------: | :----------------------: |
13-
| 3.x | mmcv>=2.0.0rc1, \<2.1.0 | mmengine>=0.5.0, \<0.7.0 |
14-
| 3.0.0rc0 | mmcv>=2.0.0rc1, \<2.1.0 | mmengine>=0.5.0, \<0.7.0 |
11+
| MMDetection 版本 | MMCV 版本 | MMEngine 版本 |
12+
| 3.x | mmcv>=2.0.0rc1, \<2.1.0 | mmengine>=0.3.0, \<1.0.0 |
13+
| 3.0.0rc3 | mmcv>=2.0.0rc1, \<2.1.0 | mmengine>=0.3.0, \<1.0.0 |
14+
| 3.0.0rc2 | mmcv>=2.0.0rc1, \<2.1.0 | mmengine>=0.1.0, \<1.0.0 |
15+
| 3.0.0rc1 | mmcv>=2.0.0rc1, \<2.1.0 | mmengine>=0.1.0, \<1.0.0 |
16+
| 3.0.0rc0 | mmcv>=2.0.0rc1, \<2.1.0 | mmengine>=0.1.0, \<1.0.0 |
1517

1618
**注意:**
1719

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.0rc2'
3+
__version__ = '3.0.0rc3'
44
short_version = __version__
55

66

0 commit comments

Comments
 (0)