Bump version to v2.11.0 (#4870)

* add change log for v2.11.0

* fix typo

* version 2.11.0

* fix typo

* to meet the specification of change log

* Update changelog.md

Co-authored-by: Wenwei Zhang <40779233+ZwwWayne@users.noreply.github.com>
pull/4885/head v2.11.0
ZhangShilong 4 years ago committed by GitHub
parent 2f8cafe450
commit 2894516bac
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      README.md
  2. 2
      README_zh-CN.md
  3. 30
      docs/changelog.md
  4. 1
      docs/get_started.md
  5. 2
      mmdet/version.py

@ -44,7 +44,7 @@ This project is released under the [Apache 2.0 license](LICENSE).
## Changelog ## Changelog
v2.10.0 was released in 01/03/2021. v2.11.0 was released in 01/04/2021.
Please refer to [changelog.md](docs/changelog.md) for details and release history. Please refer to [changelog.md](docs/changelog.md) for details and release history.
A comparison between v1.x and v2.0 codebases can be found in [compatibility.md](docs/compatibility.md). A comparison between v1.x and v2.0 codebases can be found in [compatibility.md](docs/compatibility.md).

@ -44,7 +44,7 @@ v1.x 的历史版本支持 PyTorch 1.1 到 1.4,但是我们强烈建议用户
## 更新日志 ## 更新日志
最新的月度版本 v2.10.0 在 2021.03.01 发布。 最新的月度版本 v2.11.0 在 2021.04.01 发布。
如果想了解更多版本更新细节和历史信息,请阅读[更新日志](docs/changelog.md)。 如果想了解更多版本更新细节和历史信息,请阅读[更新日志](docs/changelog.md)。
在[兼容性说明文档](docs/compatibility.md)中我们提供了 1.x 和 2.0 版本的详细比较。 在[兼容性说明文档](docs/compatibility.md)中我们提供了 1.x 和 2.0 版本的详细比较。

@ -1,5 +1,35 @@
## Changelog ## Changelog
### v2.11. (01/4/2021)
**Highlights**
- Support new method: [Localization Distillation for Object Detection](https://arxiv.org/pdf/2102.12252.pdf)
- Support Pytorch2ONNX with batch inference and dynamic shape
**New Features**
- Support localization distillation for object detection (#4758)
- Support Pytorch2ONNX with batch inference and dynamic shape for Faster-RCNN and mainstream one-stage detectors (#4796)
- Add Deformable Conv2d TensorRT plugin (#858)
**Improvements**
- Support batch inference in head of RetinaNet (#4699)
- Add batch dimension in second stage of Faster-RCNN (#4785)
- Support batch inference in bbox coder (#4721)
- Add check for `ann_ids` in `COCODataset` to ensure it is unique (#4789)
- support for showing the FPN results (#4716)
- support dynamic shape for grid_anchor (#4684)
- Support automatic statistical evaluation results and export them to EXCEL (#4693)
- Move pycocotools version check to when it is used (#4880)
**Bug Fixes**
- Fix a bug of TridentNet when doing the batch inference (#4717)
- Fix a bug of Pytorch2ONNX in FASF (#4735)
- Fix a bug when show the image with float type (#4732)
### v2.10.0 (01/03/2021) ### v2.10.0 (01/03/2021)
#### Highlights #### Highlights

@ -12,6 +12,7 @@ The compatible MMDetection and MMCV versions are as below. Please install the co
| MMDetection version | MMCV version | | MMDetection version | MMCV version |
|:-------------------:|:-------------------:| |:-------------------:|:-------------------:|
| master | mmcv-full>=1.2.4, <1.4.0 | | master | mmcv-full>=1.2.4, <1.4.0 |
| 2.11.0 | mmcv-full>=1.2.4, <1.4.0 |
| 2.10.0 | mmcv-full>=1.2.4, <1.4.0 | | 2.10.0 | mmcv-full>=1.2.4, <1.4.0 |
| 2.9.0 | mmcv-full>=1.2.4, <1.4.0 | | 2.9.0 | mmcv-full>=1.2.4, <1.4.0 |
| 2.8.0 | mmcv-full>=1.2.4, <1.4.0 | | 2.8.0 | mmcv-full>=1.2.4, <1.4.0 |

@ -1,6 +1,6 @@
# Copyright (c) Open-MMLab. All rights reserved. # Copyright (c) Open-MMLab. All rights reserved.
__version__ = '2.10.0' __version__ = '2.11.0'
short_version = __version__ short_version = __version__

Loading…
Cancel
Save