Skip to content

Commit a21eb25

Browse files
authored
bump to v2.8.0 (open-mmlab#4387)
1 parent 103a4dd commit a21eb25

File tree

5 files changed

+45
-5
lines changed

5 files changed

+45
-5
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ This project is released under the [Apache 2.0 license](LICENSE).
4242

4343
## Changelog
4444

45-
v2.7.0 was released in 30/11/2020.
45+
v2.8.0 was released in 04/01/2021.
4646
Please refer to [changelog.md](docs/changelog.md) for details and release history.
4747
A comparison between v1.x and v2.0 codebases can be found in [compatibility.md](docs/compatibility.md).
4848

docs/changelog.md

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

3+
### v2.8.0 (04/01/2021)
4+
5+
#### Highlights
6+
7+
- Support new methods: [Cascade RPN](https://arxiv.org/abs/1909.06720), [TridentNet](https://arxiv.org/abs/1901.01892)
8+
9+
#### New Features
10+
11+
- Support [Cascade RPN](https://arxiv.org/abs/1909.06720) (#1900)
12+
- Support [TridentNet](https://arxiv.org/abs/1901.01892) (#3313)
13+
14+
#### Bug Fixes
15+
16+
- Fix bug of show result in async_benchmark (#4367)
17+
- Fix scale factor in MaskTestMixin (#4366)
18+
- Fix but when returning indices in `multiclass_nms` (#4362)
19+
- Fix bug of empirical attention in resnext backbone error (#4300)
20+
- Fix bug of `img_norm_cfg` in FCOS-HRNet models with updated performance and models (#4250)
21+
- Fix invalid checkpoint and log in Mask R-CNN models on Cityscapes dataset (#4287)
22+
- Fix bug in distributed sampler when dataset is too small (#4257)
23+
- Fix bug of 'PAFPN has no attribute extra_convs_on_inputs' (#4235)
24+
25+
#### Improvements
26+
27+
- Update model url from aws to aliyun (#4349)
28+
- Update ATSS for PyTorch 1.6+ (#4359)
29+
- Update script to install ruby in pre-commit installation (#4360)
30+
- Delete deprecated `mmdet.ops` (#4325)
31+
- Refactor hungarian assigner for more general usage in Sparse R-CNN (#4259)
32+
- Handle scipy import in DETR to reduce package dependencies (#4339)
33+
- Update documentation of usages for config options after MMCV (1.2.3) supports overriding list in config (#4326)
34+
- Update pre-train models of faster rcnn trained on COCO subsets (#4307)
35+
- Avoid zero or too small value for beta in Dynamic R-CNN (#4303)
36+
- Add doccumentation for Pytorch2ONNX (#4271)
37+
- Add deprecated warning FPN arguments (#4264)
38+
- Support returning indices of kept bboxes when using nms (#4251)
39+
- Update type and device requirements when creating tensors `GFLHead` (#4210)
40+
- Update device requirements when creating tensors in `CrossEntropyLoss` (#4224)
41+
342
### v2.7.0 (30/11/2020)
443

544
- Support new method: [DETR](https://arxiv.org/abs/2005.12872), [ResNest](https://arxiv.org/abs/2004.08955), Faster R-CNN DC5.

docs/get_started.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,12 +11,13 @@ The compatible MMDetection and MMCV versions are as below. Please install the co
1111

1212
| MMDetection version | MMCV version |
1313
|:-------------------:|:-------------------:|
14-
| master | mmcv-full>=1.1.5, <1.3|
14+
| master | mmcv-full>=1.2.4, <1.3|
15+
| 2.8.0 | mmcv-full>=1.2.4, <1.3|
1516
| 2.7.0 | mmcv-full>=1.1.5, <1.3|
1617
| 2.6.0 | mmcv-full>=1.1.5, <1.3|
1718
| 2.5.0 | mmcv-full>=1.1.5, <1.3|
1819
| 2.4.0 | mmcv-full>=1.1.1, <1.3|
19-
| 2.3.0 | mmcv-full==1.0.5|
20+
| 2.3.0 | mmcv-full==1.0.5 |
2021
| 2.3.0rc0 | mmcv-full>=1.0.2 |
2122
| 2.2.1 | mmcv==0.6.2 |
2223
| 2.2.0 | mmcv==0.6.2 |

mmdet/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ def digit_version(version_str):
1515
return digit_version
1616

1717

18-
mmcv_minimum_version = '1.1.5'
18+
mmcv_minimum_version = '1.2.4'
1919
mmcv_maximum_version = '1.3'
2020
mmcv_version = digit_version(mmcv.__version__)
2121

mmdet/version.py

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

3-
__version__ = '2.7.0'
3+
__version__ = '2.8.0'
44
short_version = __version__
55

66

0 commit comments

Comments
 (0)