|
1 | 1 | ## Changelog |
2 | 2 |
|
| 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 | + |
3 | 44 | ### v2.6.0 (1/11/2020) |
4 | 45 |
|
5 | 46 | - Support new method: [VarifocalNet](https://arxiv.org/abs/2008.13367). |
|
0 commit comments