Skip to content

Commit 1ea1918

Browse files
hhaAndroidZwwWayne
authored andcommitted
Bump version to 3.0.0rc1 (#8873)
* bump version to 3.0.0rc1 * update * update
1 parent cc0ef98 commit 1ea1918

File tree

5 files changed

+39
-12
lines changed

5 files changed

+39
-12
lines changed

README.md

+3-6
Original file line numberDiff line numberDiff line change
@@ -75,13 +75,10 @@ Apart from MMDetection, we also released [MMEngine](https://github.com/open-mmla
7575

7676
## What's New
7777

78-
**v3.0.0rc0** was released in 31/8/2022:
78+
**v3.0.0rc1** was released in 26/9/2022:
7979

80-
- Unifies interfaces of all components based on [MMEngine](https://github.com/open-mmlab/mmengine).
81-
- Faster training and testing speed with complete support of mixed precision training.
82-
- Refactored and more flexible [architecture](https://mmdetection.readthedocs.io/en/3.x/overview.html).
83-
- Provides more strong baselines and a general semi-supervised object detection framework. See [tutorial of semi-supervised detection](https://mmdetection.readthedocs.io/en/3.x/user_guides/semi_det.html).
84-
- Allows any kind of single-stage model as an RPN in a two-stage model. See [tutorial](https://mmdetection.readthedocs.io/en/3.x/user_guides/single_stage_as_rpn.html).
80+
- Release a high-precision, low-latency single-stage object detector [RTMDet](configs/rtmdet).
81+
- Refactored anchor head and base head with `box type`.
8582

8683
## Installation
8784

README_zh-CN.md

+3-5
Original file line numberDiff line numberDiff line change
@@ -74,12 +74,10 @@ MMDetection 是一个基于 PyTorch 的目标检测开源工具箱。它是 [Ope
7474

7575
## 最新进展
7676

77-
**v3.0.0rc0** 版本已经在 2022.8.31 发布:
77+
**v3.0.0rc1** 版本已经在 2022.9.26 发布:
7878

79-
- 基于 [MMEngine](https://github.com/open-mmlab/mmengine) 统一了各组件接口。
80-
- 全面支持混合精度,训练测试速度更快。
81-
- 提供了更强的基线模型,并支持了通用的半监督目标检测框架,详见[半监督目标检测教程](https://mmdetection.readthedocs.io/zh_CN/3.x/user_guides/semi_det.html)
82-
- 支持使用任意单阶段检测器作为二阶段模型的 RPN,详见[教程](https://mmdetection.readthedocs.io/zh_CN/3.x/user_guides/single_stage_as_rpn.html)
79+
- 发布高精度低延时单阶段目标检测算法 [RTMDet](configs/rtmdet)
80+
- 重构 Anchor Head 和 Base Head 以支持 `box type`
8381

8482
## 安装
8583

docs/en/notes/changelog.md

+31
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,36 @@
11
# Changelog of v3.x
22

3+
## v3.0.0rc1 (26/9/2022)
4+
5+
### Highlights
6+
7+
- Release a high-precision, low-latency single-stage object detector [RTMDet](configs/rtmdet).
8+
9+
#### Bug Fixes
10+
11+
- Fix UT to be compatible with PyTorch 1.6 (#8707)
12+
- Fix `NumClassCheckHook` bug when model is wrapped (#8794)
13+
- Update the right URL of R-50-FPN with BoundedIoULoss (#8805)
14+
- Fix potential bug of indices in RandAugment (#8826)
15+
- Fix some types and links (#8839, #8820, #8793, #8868)
16+
- Fix incorrect background fill values in `FSAF` and `RepPoints` Head (#8813)
17+
18+
#### Improvements
19+
20+
- Refactored anchor head and base head with `box type` (#8625)
21+
- Refactored `SemiBaseDetector` and `SoftTeacher` (#8786)
22+
- Add list to dict keys to avoid modify loss dict (#8828)
23+
- Update `analyze_results.py` , `analyze_logs.py` and `loading.py` (#8430, #8402, #8784)
24+
- Support dump results in `test.py` (#8814)
25+
- Check empty predictions in `DetLocalVisualizer._draw_instances` (#8830)
26+
- Fix `floordiv` warning in `SOLO` (#8738)
27+
28+
#### Contributors
29+
30+
A total of 16 developers contributed to this release.
31+
32+
Thanks @ZwwWayne, @jbwang1997, @Czm369, @ice-tong, @Zheng-LinXiao, @chhluo, @RangiLyu, @liuyanyi, @wanghonglie, @levan92, @JiayuXu0, @nye0, @hhaAndroid, @xin-li-67, @shuxp, @zytx121
33+
334
## v3.0.0rc0 (31/8/2022)
435

536
We are excited to announce the release of MMDetection 3.0.0rc0. MMDet 3.0.0rc0 is the first version of MMDetection 3.x, a part of the OpenMMLab 2.0 projects. Built upon the new [training engine](https://github.com/open-mmlab/mmengine), MMDet 3.x unifies the interfaces of the dataset, models, evaluation, and visualization with faster training and testing speed. It also provides a general semi-supervised object detection framework and strong baselines.

mmdet/version.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Copyright (c) OpenMMLab. All rights reserved.
22

3-
__version__ = '3.0.0rc0'
3+
__version__ = '3.0.0rc1'
44
short_version = __version__
55

66

model-index.yml

+1
Original file line numberDiff line numberDiff line change
@@ -53,6 +53,7 @@ Import:
5353
- configs/pisa/metafile.yml
5454
- configs/point_rend/metafile.yml
5555
- configs/queryinst/metafile.yml
56+
- configs/rtmdet/metafile.yml
5657
- configs/regnet/metafile.yml
5758
- configs/reppoints/metafile.yml
5859
- configs/res2net/metafile.yml

0 commit comments

Comments
 (0)