|
1 | 1 | ## Changelog |
2 | 2 |
|
| 3 | +### v2.2.0 (1/7/2020) |
| 4 | + |
| 5 | +**Highlights** |
| 6 | +- Support new methods: [DetectoRS](https://arxiv.org/abs/2006.02334), [PointRend](https://arxiv.org/abs/1912.08193), [Generalized Focal Loss](https://arxiv.org/abs/2006.04388), [Dynamic R-CNN](https://arxiv.org/abs/2004.06002) |
| 7 | + |
| 8 | +**Bug Fixes** |
| 9 | + - Fix FreeAnchor when no gt in image (#3176) |
| 10 | + - Clean up deprecated usage of `register_module()` (#3092, #3161) |
| 11 | + - Fix pretrain bug in NAS FCOS (#3145) |
| 12 | + - Fix `num_classes` in SSD (#3142) |
| 13 | + - Fix FCOS warmup (#3119) |
| 14 | + - Fix `rstrip` in `tools/publish_model.py` |
| 15 | + - Fix `flip_ratio` default value in RandomFLip pipeline (#3106) |
| 16 | + - Fix cityscapes eval with ms_rcnn (#3112) |
| 17 | + - Fix RPN softmax (#3056) |
| 18 | + - Fix filename of LVIS@v0.5 (#2998) |
| 19 | + - Fix nan loss by filtering out-of-frame gt_bboxes in COCO (#2999) |
| 20 | + - Fix bug in FSAF (#3018) |
| 21 | + - Add FocalLoss `num_classes` check (#2964) |
| 22 | + - Fix PISA Loss when there are no gts (#2992) |
| 23 | + - Avoid nan in `iou_calculator` (#2975) |
| 24 | + - Prevent possible bugs in loading and transforms caused by shallow copy (#2967) |
| 25 | + |
| 26 | +**New Features** |
| 27 | +- Add DetectoRS (#3064) |
| 28 | +- Support Generalize Focal Loss (#3097) |
| 29 | +- Support PointRend (#2752) |
| 30 | +- Support Dynamic R-CNN (#3040) |
| 31 | +- Add DeepFashion dataset (#2968) |
| 32 | +- Implement FCOS training tricks (#2935) |
| 33 | +- Use BaseDenseHead as base class for anchor-base heads (#2963) |
| 34 | +- Add `with_cp` for BasicBlock (#2891) |
| 35 | +- Add `stem_channles` argument for ResNet (#2954) |
| 36 | + |
| 37 | +**Improvements** |
| 38 | + |
| 39 | +- Add anchor free base head (#2867) |
| 40 | +- Migrate to github action (#3137) |
| 41 | +- Add docstring for datasets, pipelines, core modules and methods (#3130, #3125, #3120) |
| 42 | +- Add VOC benchmark (#3060) |
| 43 | +- Add `concat` mode in GRoI (#3098) |
| 44 | +- Remove cmd arg `autorescale-lr` (#3080) |
| 45 | +- Use `len(data['img_metas'])` to indicate `num_samples` (#3073, #3053) |
| 46 | +- Switch to EpochBasedRunner (#2976) |
| 47 | + |
| 48 | + |
3 | 49 | ### v2.1.0 (8/6/2020) |
4 | 50 |
|
5 | 51 | **Highlights** |
|
0 commit comments