Skip to content

Commit a8c681d

Browse files
jshilonghhaAndroid
andauthored
Bump version to v2.13.0 (#5262)
* update changelog * update changelog * Improvements * Improvements * update for v2.13.0 Co-authored-by: hhaAndroid <[email protected]>
1 parent 8d40aef commit a8c681d

File tree

6 files changed

+43
-4
lines changed

6 files changed

+43
-4
lines changed

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ This project is released under the [Apache 2.0 license](LICENSE).
4444

4545
## Changelog
4646

47-
v2.12.0 was released in 01/05/2021.
47+
v2.13.0 was released in 01/06/2021.
4848
Please refer to [changelog.md](docs/changelog.md) for details and release history.
4949
A comparison between v1.x and v2.0 codebases can be found in [compatibility.md](docs/compatibility.md).
5050

README_zh-CN.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ v1.x 的历史版本支持 PyTorch 1.1 到 1.4,但是我们强烈建议用户
4444

4545
## 更新日志
4646

47-
最新的月度版本 v2.12.0 在 2021.05.01 发布。
47+
最新的月度版本 v2.13.0 在 2021.06.01 发布。
4848
如果想了解更多版本更新细节和历史信息,请阅读[更新日志](docs/changelog.md)
4949
[兼容性说明文档](docs/compatibility.md)中我们提供了 1.x 和 2.0 版本的详细比较。
5050

docker/serve/Dockerfile

+1-1
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.2.7"
7-
ARG MMDET="2.12.0"
7+
ARG MMDET="2.13.0"
88

99
ENV PYTHONUNBUFFERED TRUE
1010

docs/changelog.md

+38
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,43 @@
11
## Changelog
22

3+
### v2.13.0 (01/6/2021)
4+
5+
#### Highlights
6+
7+
- Support new methods: [CenterNet](https://arxiv.org/abs/1904.07850), [Seesaw Loss](https://arxiv.org/abs/2008.10032), [MobileNetV2](https://arxiv.org/abs/1801.04381)
8+
9+
#### New Features
10+
11+
- Support paper [Objects as Points](https://arxiv.org/abs/1904.07850) (#4602)
12+
- Support paper [Seesaw Loss for Long-Tailed Instance Segmentation (CVPR 2021)](https://arxiv.org/abs/2008.10032) (#5128)
13+
- Support [MobileNetV2](https://arxiv.org/abs/1801.04381) backbone and inverted residual block (#5122)
14+
- Support [MIM](https://github.com/open-mmlab/mim) (#5143)
15+
- ONNX exportation with dynamic shapes of CornerNet (#5136)
16+
- Add `mask_soft` config option to allow non-binary masks (#4615)
17+
- Add PWC metafile (#5135)
18+
19+
#### Bug Fixes
20+
21+
- Fix YOLOv3 FP16 training error (#5172)
22+
- Fix Cacscade R-CNN TTA test error when `det_bboxes` length is 0 (#5221)
23+
- Fix `iou_thr` variable naming errors in VOC recall calculation function (#5195)
24+
- Fix Faster R-CNN performance dropped in ONNX Runtime (#5197)
25+
- Fix DETR dict changed error when using python 3.8 during iteration (#5226)
26+
27+
#### Improvements
28+
29+
- Refactor ONNX export of two stage detector (#5205)
30+
- Replace MMDetection's EvalHook with MMCV's EvalHook for consistency (#4806)
31+
- Update RoI extractor for ONNX (#5194)
32+
- Use better parameter initialization in YOLOv3 head for higher performance (#5181)
33+
- Release new DCN models of Mask R-CNN by mixed-precision training (#5201)
34+
- Update YOLOv3 model weights (#5229)
35+
- Add DetectoRS ResNet-101 model weights (#4960)
36+
- Discard bboxes with sizes equals to `min_bbox_size` (#5011)
37+
- Remove duplicated code in DETR head (#5129)
38+
- Remove unnecessary object in class definition (#5180)
39+
- Fix doc link (#5192)
40+
341
### v2.12.0 (01/5/2021)
442

543
#### Highlights

docs/get_started.md

+1
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ The compatible MMDetection and MMCV versions are as below. Please install the co
1212
| MMDetection version | MMCV version |
1313
|:-------------------:|:-------------------:|
1414
| master | mmcv-full>=1.3.3, <1.4.0 |
15+
| 2.13.0 | mmcv-full>=1.3.3, <1.4.0 |
1516
| 2.12.0 | mmcv-full>=1.3.3, <1.4.0 |
1617
| 2.11.0 | mmcv-full>=1.2.4, <1.4.0 |
1718
| 2.10.0 | mmcv-full>=1.2.4, <1.4.0 |

mmdet/version.py

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

3-
__version__ = '2.12.0'
3+
__version__ = '2.13.0'
44
short_version = __version__
55

66

0 commit comments

Comments
 (0)