Skip to content

Commit

Permalink
Bump version to v2.28.0 (#9668)
Browse files Browse the repository at this point in the history
  • Loading branch information
ZwwWayne authored Jan 28, 2023
1 parent fd76d2b commit b955832
Show file tree
Hide file tree
Showing 6 changed files with 49 additions and 6 deletions.
6 changes: 4 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -77,9 +77,11 @@ Apart from MMDetection, we also released a library [mmcv](https://github.com/ope

### 💎 Stable version

**2.27.0** was released in 5/1/2023:
**2.28.0** was released in 28/1/2023:

- Support receptive field search of CNN models([TPAMI 2022: RF-Next](http://mftp.mmcheng.net/Papers/22TPAMI-ActionSeg.pdf)).
- Support Objects365 Dataset, and Separated and Occluded COCO metric
- Support acceleration of RetinaNet and SSD on Ascend
- Deprecate the support of Python 3.6

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

Expand Down
6 changes: 4 additions & 2 deletions README_zh-CN.md
Original file line number Diff line number Diff line change
Expand Up @@ -76,9 +76,11 @@ MMDetection 是一个基于 PyTorch 的目标检测开源工具箱。它是 [Ope

### 💎 稳定版本

最新的 **2.27.0** 版本已经在 2023.1.5 发布:
最新的 **2.28.0** 版本已经在 2023.1.28 发布:

- 支持 CNN 模型的感受野搜索 ([TPAMI 2022: RF-Next](http://mftp.mmcheng.net/Papers/22TPAMI-ActionSeg.pdf))。
- 支持 Object365 数据集和遮挡物检测的 benchmark
- 支持 SSD 和 RetinaNet 算法在昇腾芯片上的加速
- 不再保证对 Python 3.6 的支持

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

Expand Down
2 changes: 1 addition & 1 deletion docker/serve/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ ARG CUDNN="7"
FROM pytorch/pytorch:${PYTORCH}-cuda${CUDA}-cudnn${CUDNN}-devel

ARG MMCV="1.3.17"
ARG MMDET="2.27.0"
ARG MMDET="2.28.0"

ENV PYTHONUNBUFFERED TRUE

Expand Down
38 changes: 38 additions & 0 deletions docs/en/changelog.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,43 @@
## Changelog

### v2.28.0 (28/1/2023)

#### Highlights

- Support Objects365 Dataset and Separated and Occluded COCO metric
- Support acceleration of RetinaNet and SSD on Ascend
- Deprecate the support of Python 3.6

#### New Features and Improvements

- Support Objects365 Dataset (#7525)
- Support [Separated and Occluded COCO metric](https://arxiv.org/abs/2210.10046) (#9574)
- Support acceleration of RetinaNet and SSD on Ascend with documentation (#9648, #9614)
- Added missing `-` to `--format-only` in documentation.

#### Deprecations

- Upgrade the minimum Python version to 3.7, the support of Python 3.6 is no longer guaranteed (#9604)

#### Bug Fixes

- Fix validation loss logging by (#9663)
- Fix inconsistent float precision between mmdet and mmcv (#9570)
- Fix argument name for fp32 in `DeformableDETRHead` (#9607)
- Fix typo of all config file path in Metafile.yml (#9627)

#### Contributors

A total of 11 developers contributed to this release.
Thanks @eantono, @akstt, @@lpizzinidev, @RangiLyu, @kbumsik, @tianleiSHI, @nijkah, @BIGWangYuDong, @wangjiangben-hw, @@jamiechoi1995, @ZwwWayne

## New Contributors

- @kbumsik made their first contribution in https://github.com/open-mmlab/mmdetection/pull/9627
- @akstt made their first contribution in https://github.com/open-mmlab/mmdetection/pull/9614
- @lpizzinidev made their first contribution in https://github.com/open-mmlab/mmdetection/pull/9649
- @eantono made their first contribution in https://github.com/open-mmlab/mmdetection/pull/9663

### v2.27.0 (5/1/2023)

#### Highlights
Expand Down
1 change: 1 addition & 0 deletions docs/en/faq.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ We list some common troubles faced by many users and their corresponding solutio
| MMDetection version | MMCV version |
| :-----------------: | :------------------------: |
| master | mmcv-full>=1.3.17, \<1.8.0 |
| 2.28.0 | mmcv-full>=1.3.17, \<1.8.0 |
| 2.27.0 | mmcv-full>=1.3.17, \<1.8.0 |
| 2.26.0 | mmcv-full>=1.3.17, \<1.8.0 |
| 2.25.3 | mmcv-full>=1.3.17, \<1.7.0 |
Expand Down
2 changes: 1 addition & 1 deletion mmdet/version.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Copyright (c) OpenMMLab. All rights reserved.

__version__ = '2.27.0'
__version__ = '2.28.0'
short_version = __version__


Expand Down

0 comments on commit b955832

Please sign in to comment.