Skip to content

Commit e9cae2d

Browse files
authored
Bump version to v2.28.2 (#9820)
1 parent 6a904c5 commit e9cae2d

File tree

7 files changed

+40
-16
lines changed

7 files changed

+40
-16
lines changed

README.md

Lines changed: 9 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -90,11 +90,9 @@ Apart from MMDetection, we also released a library [mmcv](https://github.com/ope
9090

9191
### 💎 Stable version
9292

93-
**2.28.1** was released in 1/2/2023:
93+
**2.28.2** was released in 27/2/2023:
9494

95-
- Support Objects365 Dataset, and Separated and Occluded COCO metric
96-
- Support acceleration of RetinaNet and SSD on Ascend
97-
- Deprecate the support of Python 3.6 and fix some bugs of 2.28.0
95+
- Fixed some known documentation, configuration and linking error issues
9896

9997
Please refer to [changelog.md](docs/en/changelog.md) for details and release history.
10098

@@ -120,10 +118,14 @@ We are excited to announce our latest work on real-time object recognition tasks
120118
<img src="https://user-images.githubusercontent.com/12907710/208044554-1e8de6b5-48d8-44e4-a7b5-75076c7ebb71.png"/>
121119
</div>
122120

123-
A brand new version of **MMDetection v3.0.0rc5** was released in 26/12/2022:
121+
A brand new version of **MMDetection v3.0.0rc6** was released in 27/2/2023:
124122

125-
- Support [RTMDet](https://arxiv.org/abs/2212.07784) instance segmentation models. The technical report of RTMDet is on [arxiv](https://arxiv.org/abs/2212.07784)
126-
- Support SSHContextModule in paper [SSH: Single Stage Headless Face Detector](https://arxiv.org/abs/1708.03979)
123+
- Support [Boxinst](https://github.com/open-mmlab/mmdetection/tree/3.x/configs/boxinst), [Objects365 Dataset](https://github.com/open-mmlab/mmdetection/tree/3.x/configs/objects365), and [Separated and Occluded COCO metric](https://github.com/open-mmlab/mmdetection/tree/3.x/docs/en/user_guides/useful_tools.md#coco-separated--occluded-mask-metric)
124+
- Support [ConvNeXt-V2](https://github.com/open-mmlab/mmdetection/tree/3.x/projects/ConvNeXt-V2), [DiffusionDet](https://github.com/open-mmlab/mmdetection/tree/3.x/projects/DiffusionDet), and inference of [EfficientDet](https://github.com/open-mmlab/mmdetection/tree/3.x/projects/EfficientDet) and [Detic](https://github.com/open-mmlab/mmdetection/tree/3.x/projects/Detic) in `Projects`
125+
- Refactor [DETR](https://github.com/open-mmlab/mmdetection/tree/3.x/configs/detr) series and support [Conditional-DETR](https://github.com/open-mmlab/mmdetection/tree/3.x/configs/conditional_detr), [DAB-DETR](https://github.com/open-mmlab/mmdetection/tree/3.x/configs/dab_detr), and [DINO](https://github.com/open-mmlab/mmdetection/tree/3.x/configs/dino)
126+
- Support DetInferencer, Test Time Augmentation, and auto import modules from registry
127+
- Support RTMDet-Ins ONNXRuntime and TensorRT [deployment](https://github.com/open-mmlab/mmdetection/tree/3.x/configs/rtmdet/README.md#deployment-tutorial)
128+
- Support [calculating FLOPs of detectors](https://github.com/open-mmlab/mmdetection/tree/3.x/docs/en/user_guides/useful_tools.md#Model-Complexity)
127129

128130
Find more new features in [3.x branch](https://github.com/open-mmlab/mmdetection/tree/3.x). Issues and PRs are welcome!
129131

README_zh-CN.md

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

7777
### 💎 稳定版本
7878

79-
最新的 **2.28.1** 版本已经在 2023.2.1 发布:
79+
最新的 **2.28.2** 版本已经在 2023.2.27 发布:
8080

81-
- 支持 Object365 数据集和遮挡物检测的 benchmark
82-
- 支持 SSD 和 RetinaNet 算法在昇腾芯片上的加速
83-
- 不再保证对 Python 3.6 的支持并修复了 2.28.0 的一些 bug
81+
- 修复了一些已知的文档、配置和链接错误问题
8482

8583
如果想了解更多版本更新细节和历史信息,请阅读[更新日志](docs/en/changelog.md)
8684

@@ -106,10 +104,14 @@ MMDetection 是一个基于 PyTorch 的目标检测开源工具箱。它是 [Ope
106104
<img src="https://user-images.githubusercontent.com/12907710/208044554-1e8de6b5-48d8-44e4-a7b5-75076c7ebb71.png"/>
107105
</div>
108106

109-
全新的 **v3.0.0rc5** 版本已经在 2022.12.26 发布:
107+
全新的 **v3.0.0rc6** 版本已经在 2023.2.27 发布:
110108

111-
- 支持了 [RTMDet](https://arxiv.org/abs/2212.07784) 的实例分割模型。RTMDet 的技术报告发布在了 [arxiv](https://arxiv.org/abs/2212.07784) 上。
112-
- 支持了 [SSH: Single Stage Headless Face Detector](https://arxiv.org/abs/1708.03979) 论文中的 SSHContextModule
109+
- 支持了 [Boxinst](https://github.com/open-mmlab/mmdetection/tree/3.x/configs/boxinst), [Objects365 Dataset](https://github.com/open-mmlab/mmdetection/tree/3.x/configs/objects365)[Separated and Occluded COCO metric](https://github.com/open-mmlab/mmdetection/tree/3.x/docs/zh_cn/user_guides/useful_tools.md#coco-分离和遮挡实例分割性能评估)
110+
-`Projects` 中支持了 [ConvNeXt-V2](https://github.com/open-mmlab/mmdetection/tree/3.x/projects/ConvNeXt-V2), [DiffusionDet](https://github.com/open-mmlab/mmdetection/tree/3.x/projects/DiffusionDet)[EfficientDet](https://github.com/open-mmlab/mmdetection/tree/3.x/projects/EfficientDet), [Detic](https://github.com/open-mmlab/mmdetection/tree/3.x/projects/Detic) 的推理
111+
- 重构了 [DETR](https://github.com/open-mmlab/mmdetection/tree/3.x/configs/detr) 系列并支持了 [Conditional-DETR](https://github.com/open-mmlab/mmdetection/tree/3.x/configs/conditional_detr), [DAB-DETR](https://github.com/open-mmlab/mmdetection/tree/3.x/configs/dab_detr)[DINO](https://github.com/open-mmlab/mmdetection/tree/3.x/configs/dino)
112+
- 支持了 DetInferencer, Test Time Augmentation 以及从注册表 (registry) 自动导入模块
113+
- 支持了 RTMDet-Ins 的 ONNXRuntime 和 TensorRT [部署](https://github.com/open-mmlab/mmdetection/tree/3.x/configs/rtmdet/README.md#deployment-tutorial)
114+
- 支持了检测器[计算 FLOPS](https://github.com/open-mmlab/mmdetection/tree/3.x/docs/zh_cn/user_guides/useful_tools.md#模型复杂度)
113115

114116
## 安装
115117

docker/serve/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ ARG CUDNN="7"
44
FROM pytorch/pytorch:${PYTORCH}-cuda${CUDA}-cudnn${CUDNN}-devel
55

66
ARG MMCV="1.3.17"
7-
ARG MMDET="2.28.1"
7+
ARG MMDET="2.28.2"
88

99
ENV PYTHONUNBUFFERED TRUE
1010

docs/en/changelog.md

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

3+
### v2.28.2 (24/2/2023)
4+
5+
#### New Features and Improvements
6+
7+
- Add Twitter, Discord, Medium and YouTube link (#9774)
8+
- Update `customize_runtime.md` (#9797)
9+
10+
#### Bug Fixes
11+
12+
- Fix `WIDERFace SSD` loss for Nan problem (#9734)
13+
- Fix missing API documentation in Readthedoc (#9729)
14+
- Fix the configuration file and log path of CenterNet (#9791)
15+
16+
#### Contributors
17+
18+
A total of 4 developers contributed to this release.
19+
Thanks @co63oc, @Ginray, @vansin, @RangiLyu
20+
321
### v2.28.1 (1/2/2023)
422

523
#### Bug Fixes

docs/en/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 |
1212
| :-----------------: | :------------------------: |
1313
| master | mmcv-full>=1.3.17, \<1.8.0 |
14+
| 2.28.2 | mmcv-full>=1.3.17, \<1.8.0 |
1415
| 2.28.1 | mmcv-full>=1.3.17, \<1.8.0 |
1516
| 2.28.0 | mmcv-full>=1.3.17, \<1.8.0 |
1617
| 2.27.0 | mmcv-full>=1.3.17, \<1.8.0 |

docs/zh_cn/get_started.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ MMDetection 和 MMCV 版本兼容性如下所示,需要安装正确的 MMCV
1212
| MMDetection 版本 | MMCV 版本 |
1313
| :--------------: | :------------------------: |
1414
| master | mmcv-full>=1.3.17, \<1.8.0 |
15+
| 2.28.2 | mmcv-full>=1.3.17, \<1.8.0 |
1516
| 2.28.1 | mmcv-full>=1.3.17, \<1.8.0 |
1617
| 2.28.0 | mmcv-full>=1.3.17, \<1.8.0 |
1718
| 2.27.0 | mmcv-full>=1.3.17, \<1.8.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__ = '2.28.1'
3+
__version__ = '2.28.2'
44
short_version = __version__
55

66

0 commit comments

Comments
 (0)