Skip to content

Commit 3e902c3

Browse files
authored
bump to v2.7.0 (open-mmlab#4205)
* bump to v2.7.0 * update dates * update version requirements * rephrase * resolve comments
1 parent 159d925 commit 3e902c3

File tree

5 files changed

+49
-7
lines changed

5 files changed

+49
-7
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.6.0 was released in 1/11/2020.
45+
v2.7.0 was released in 30/11/2020.
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: 41 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,46 @@
11
## Changelog
22

3+
### v2.7.0 (30/11/2020)
4+
5+
- Support new method: [DETR](https://arxiv.org/abs/2005.12872), [ResNest](https://arxiv.org/abs/2004.08955), Faster R-CNN DC5.
6+
- Support YOLO, Mask R-CNN, and Cascade R-CNN models exportable to ONNX.
7+
8+
#### New Features
9+
10+
- Support [DETR](https://arxiv.org/abs/2005.12872) (#4201, #4206)
11+
- Support to link the best checkpoint in training (#3773)
12+
- Support to override config through options in inference.py (#4175)
13+
- Support YOLO, Mask R-CNN, and Cascade R-CNN models exportable to ONNX (#4087, #4083)
14+
- Support [ResNeSt](https://arxiv.org/abs/2004.08955) backbone (#2959)
15+
- Support unclip border bbox regression (#4076)
16+
- Add tpfp func in evaluating AP (#4069)
17+
- Support mixed precision training of SSD detector with other backbones (#4081)
18+
- Add Faster R-CNN DC5 models (#4043)
19+
20+
#### Bug Fixes
21+
22+
- Fix bug of `gpu_id` in distributed training mode (#4163)
23+
- Support Albumentations with version higher than 0.5 (#4032)
24+
- Fix num_classes bug in faster rcnn config (#4088)
25+
- Update code in docs/2_new_data_model.md (#4041)
26+
27+
#### Improvements
28+
29+
- Ensure DCN offset to have similar type as features in VFNet (#4198)
30+
- Add config links in README files of models (#4190)
31+
- Add tutorials for loss conventions (#3818)
32+
- Add solution to installation issues in 30-series GPUs (#4176)
33+
- Update docker version in get_started.md (#4145)
34+
- Add model statistics and polish some titles in configs README (#4140)
35+
- Clamp neg probability in FreeAnchor (#4082)
36+
- Speed up expanding large images (#4089)
37+
- Fix Pytorch 1.7 incompatibility issues (#4103)
38+
- Update trouble shooting page to resolve segmentation fault (#4055)
39+
- Update aLRP-Loss in project page (#4078)
40+
- Clean duplicated `reduce_mean` function (#4056)
41+
- Refactor Q&A (#4045)
42+
43+
344
### v2.6.0 (1/11/2020)
445

546
- Support new method: [VarifocalNet](https://arxiv.org/abs/2008.13367).

docs/get_started.md

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,10 +11,11 @@ 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|
15-
| 2.6.0 | mmcv-full>=1.1.5, <=1.3|
16-
| 2.5.0 | mmcv-full>=1.1.5, <=1.3|
17-
| 2.4.0 | mmcv-full>=1.1.1, <=1.3|
14+
| master | mmcv-full>=1.1.5, <1.3|
15+
| 2.7.0 | mmcv-full>=1.1.5, <1.3|
16+
| 2.6.0 | mmcv-full>=1.1.5, <1.3|
17+
| 2.5.0 | mmcv-full>=1.1.5, <1.3|
18+
| 2.4.0 | mmcv-full>=1.1.1, <1.3|
1819
| 2.3.0 | mmcv-full==1.0.5|
1920
| 2.3.0rc0 | mmcv-full>=1.0.2 |
2021
| 2.2.1 | mmcv==0.6.2 |

docs/tutorials/customize_dataset.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -412,4 +412,4 @@ data = dict(
412412

413413
- Before MMDetection v2.5.0, the dataset will filter out the empty GT images automatically if the classes are set and there is no way to disable that through config. This is an undesirable behavior and introduces confusion because if the classes are not set, the dataset only filter the empty GT images when `filter_empty_gt=True` and `test_mode=False`. After MMDetection v2.5.0, we decouple the image filtering process and the classes modification, i.e., the dataset will only filter empty GT images when `filter_empty_gt=True` and `test_mode=False`, no matter whether the classes are set. Thus, setting the classes only influences the annotations of classes used for training and users could decide whether to filter empty GT images by themselves.
414414
- Since the middle format only has box labels and does not contain the class names, when using `CustomDataset`, users cannot filter out the empty GT images through configs but only do this offline.
415-
- The features for setting dataset classes and dataset filtering will be refactored to be more user-friendly in v2.6.0 or v2.7.0 (depends on the progress).
415+
- The features for setting dataset classes and dataset filtering will be refactored to be more user-friendly in v2.8.0 or v2.9.0 (depends on the progress).

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.6.0'
3+
__version__ = '2.7.0'
44
short_version = __version__
55

66

0 commit comments

Comments
 (0)