Skip to content

Commit b7ddb9a

Browse files
RangiLyuZwwWayne
authored andcommitted
bump version to v2.19.1 (#6783)
* bump version to v2.19.1 * update
1 parent 146e5ee commit b7ddb9a

File tree

7 files changed

+54
-18
lines changed

7 files changed

+54
-18
lines changed

Diff for: README.md

+8-8
Original file line numberDiff line numberDiff line change
@@ -13,10 +13,10 @@
1313
<img src="https://user-images.githubusercontent.com/12907710/137271636-56ba1cd2-b110-4812-8221-b4c120320aa9.png"/>
1414

1515

16-
[📘Documentation](https://mmdetection.readthedocs.io/en/v2.19.0/) |
17-
[🛠️Installation](https://mmdetection.readthedocs.io/en/v2.19.0/get_started.html) |
18-
[👀Model Zoo](https://mmdetection.readthedocs.io/en/v2.19.0/model_zoo.html) |
19-
[🆕Update News](https://mmdetection.readthedocs.io/en/v2.19.0/changelog.html) |
16+
[📘Documentation](https://mmdetection.readthedocs.io/en/v2.19.1/) |
17+
[🛠️Installation](https://mmdetection.readthedocs.io/en/v2.19.1/get_started.html) |
18+
[👀Model Zoo](https://mmdetection.readthedocs.io/en/v2.19.1/model_zoo.html) |
19+
[🆕Update News](https://mmdetection.readthedocs.io/en/v2.19.1/changelog.html) |
2020
[🚀Ongoing Projects](https://github.com/open-mmlab/mmdetection/projects) |
2121
[🤔Reporting Issues](https://github.com/open-mmlab/mmdetection/issues/new/choose)
2222

@@ -60,11 +60,11 @@ This project is released under the [Apache 2.0 license](LICENSE).
6060

6161
## Changelog
6262

63-
**2.19.0** was released in 29/11/2021:
63+
**2.19.1** was released in 14/12/2021:
6464

65-
- Support [Label Assignment Distillation](https://arxiv.org/abs/2108.10520)
66-
- Support `persistent_workers` for Pytorch >= 1.7
67-
- Align accuracy to the updated official YOLOX
65+
- Release [YOLOX](configs/yolox/README.md) COCO pretrained models
66+
- Add abstract and sketch of the papers in readmes
67+
- Fix some weight initialization bugs
6868

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

Diff for: README_zh-CN.md

+8-8
Original file line numberDiff line numberDiff line change
@@ -13,10 +13,10 @@
1313
<img src="https://user-images.githubusercontent.com/12907710/137271636-56ba1cd2-b110-4812-8221-b4c120320aa9.png"/>
1414

1515

16-
[📘使用文档](https://mmdetection.readthedocs.io/zh_CN/v2.19.0/) |
17-
[🛠️安装教程](https://mmdetection.readthedocs.io/zh_CN/v2.19.0/get_started.html) |
18-
[👀模型库](https://mmdetection.readthedocs.io/zh_CN/v2.19.0/model_zoo.html) |
19-
[🆕更新日志](https://mmdetection.readthedocs.io/en/v2.19.0/changelog.html) |
16+
[📘使用文档](https://mmdetection.readthedocs.io/zh_CN/v2.19.1/) |
17+
[🛠️安装教程](https://mmdetection.readthedocs.io/zh_CN/v2.19.1/get_started.html) |
18+
[👀模型库](https://mmdetection.readthedocs.io/zh_CN/v2.19.1/model_zoo.html) |
19+
[🆕更新日志](https://mmdetection.readthedocs.io/en/v2.19.1/changelog.html) |
2020
[🚀进行中的项目](https://github.com/open-mmlab/mmdetection/projects) |
2121
[🤔报告问题](https://github.com/open-mmlab/mmdetection/issues/new/choose)
2222

@@ -59,10 +59,10 @@ MMDetection 是一个基于 PyTorch 的目标检测开源工具箱。它是 [Ope
5959

6060
## 更新日志
6161

62-
最新的 **2.19.0** 版本已经在 2021.11.29 发布:
63-
- 支持了 [Label Assignment Distillation](https://arxiv.org/abs/2108.10520)
64-
- 对 PyTorch >= 1.7 支持 `persistent_workers`
65-
- 与最近更新的 YOLOX 对齐精度
62+
最新的 **2.19.1** 版本已经在 2021.12.14 发布:
63+
- 发布 [YOLOX](configs/yolox/README.md) COCO 预训练模型
64+
- 在自述文件中添加论文的摘要和草图
65+
- 修复一些权重初始化错误
6666

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

Diff for: 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.3.17"
7-
ARG MMDET="2.19.0"
7+
ARG MMDET="2.19.1"
88

99
ENV PYTHONUNBUFFERED TRUE
1010

Diff for: docs/en/changelog.md

+34
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,39 @@
11
## Changelog
22

3+
### v2.19.1 (14/12/2021)
4+
5+
#### New Features
6+
7+
- Release [YOLOX](configs/yolox/README.md) COCO pretrained models (#6698)
8+
9+
#### Bug Fixes
10+
11+
- Fix DCN initialization in DenseHead (#6625)
12+
- Fix initialization of ConvFCHead (#6624)
13+
- Fix PseudoSampler in RCNN (#6622)
14+
- Fix weight initialization in Swin and PVT (#6663)
15+
- Fix dtype bug in BaseDenseHead (#6767)
16+
- Fix SimOTA with no valid bbox (#6733)
17+
18+
#### Improvements
19+
20+
- Add an example of combining swin and one-stage models (#6621)
21+
- Add `get_ann_info` to dataset_wrappers (#6526)
22+
- Support keeping image ratio in the multi-scale training of YOLOX (#6732)
23+
- Support `bbox_clip_border` for the augmentations of YOLOX (#6730)
24+
25+
#### Documents
26+
27+
- Update metafile (#6717)
28+
- Add mmhuman3d in readme (#6699)
29+
- Update FAQ docs (#6587)
30+
- Add doc for `detect_anomalous_params` (#6697)
31+
32+
#### Contributors
33+
34+
A total of 11 developers contributed to this release.
35+
Thanks @ZwwWayne, @LJoson, @Czm369, @jshilong, @ZCMax, @RangiLyu, @BIGWangYuDong, @hhaAndroid, @zhaoxin111, @GT9505, @shinya7y
36+
337
### v2.19.0 (29/11/2021)
438

539
#### Highlights

Diff for: docs/en/get_started.md

+1
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ Compatible MMDetection and MMCV versions are shown as below. Please install the
1212
| MMDetection version | MMCV version |
1313
|:-------------------:|:-------------------:|
1414
| master | mmcv-full>=1.3.17, <1.5.0 |
15+
| 2.19.1 | mmcv-full>=1.3.17, <1.5.0 |
1516
| 2.19.0 | mmcv-full>=1.3.17, <1.5.0 |
1617
| 2.18.0 | mmcv-full>=1.3.17, <1.4.0 |
1718
| 2.17.0 | mmcv-full>=1.3.14, <1.4.0 |

Diff for: docs/zh_cn/get_started.md

+1
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.5.0 |
15+
| 2.19.1 | mmcv-full>=1.3.17, <1.5.0 |
1516
| 2.19.0 | mmcv-full>=1.3.17, <1.5.0 |
1617
| 2.18.1 | mmcv-full>=1.3.17, <1.4.0 |
1718
| 2.18.0 | mmcv-full>=1.3.14, <1.4.0 |

Diff for: 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__ = '2.19.0'
3+
__version__ = '2.19.1'
44
short_version = __version__
55

66

0 commit comments

Comments
 (0)