|
1 | 1 | ## Changelog |
2 | 2 |
|
| 3 | +### v2.23.0 (28/3/2022) |
| 4 | + |
| 5 | +#### Highlights |
| 6 | + |
| 7 | +- Support Mask2Former: [Masked-attention Mask Transformer for Universal Image Segmentation](https://arxiv.org/abs/2112.01527) |
| 8 | +- Support EfficientNet: [EfficientNet: Rethinking Model Scaling for Convolutional Neural Networks](https://arxiv.org/abs/1905.11946) |
| 9 | +- Support setting data root through environment variable `MMDET_DATASETS`, users don't have to modify the corresponding path in config files anymore. |
| 10 | +- Find a good recipe for fine-tuning high precision ResNet backbone pre-trained by Torchvision. |
| 11 | + |
| 12 | +#### New Features |
| 13 | + |
| 14 | +- Support [Mask2Former](configs/mask2former)(#6938)(#7466)(#7471) |
| 15 | +- Support [EfficientNet](configs/efficientnet) (#7514) |
| 16 | +- Support setting data root through environment variable `MMDET_DATASETS`, users don't have to modify the corresponding path in config files anymore. (#7386) |
| 17 | +- Support setting different seeds to different ranks (#7432) |
| 18 | +- Update the `dist_train.sh` so that the script can be used to support launching multi-node training on machines without slurm (#7415) |
| 19 | +- Find a good recipe for fine-tuning high precision ResNet backbone pre-trained by Torchvision (#7489) |
| 20 | + |
| 21 | +#### Bug Fixes |
| 22 | + |
| 23 | +- Fix bug in VOC unit test which removes the data directory (#7270) |
| 24 | +- Adjust the order of `get_classes` and `FileClient` (#7276) |
| 25 | +- Force the inputs of `get_bboxes` in yolox_head to float32 (#7324) |
| 26 | +- Fix misplaced arguments in LoadPanopticAnnotations (#7388) |
| 27 | +- Fix reduction=mean in CELoss. (#7449) |
| 28 | +- Update unit test of CrossEntropyCost (#7537) |
| 29 | +- Fix memory leaking in panpotic segmentation evaluation (#7538) |
| 30 | +- Fix the bug of shape broadcast in YOLOv3 (#7551) |
| 31 | + |
| 32 | +#### Improvements |
| 33 | + |
| 34 | +- Add Chinese version of onnx2tensorrt.md (#7219) |
| 35 | +- Update colab tutorials (#7310) |
| 36 | +- Update information about Localization Distillation (#7350) |
| 37 | +- Add Chinese version of `finetune.md` (#7178) |
| 38 | +- Update YOLOX log for non square input (#7235) |
| 39 | +- Add `nproc` in `coco_panoptic.py` for panoptic quality computing (#7315) |
| 40 | +- Allow to set channel_order in LoadImageFromFile (#7258) |
| 41 | +- Take point sample related functions out of mask_point_head (#7353) |
| 42 | +- Add instance evaluation for coco_panoptic (#7313) |
| 43 | +- Enhance the robustness of analyze_logs.py (#7407) |
| 44 | +- Supplementary notes of sync_random_seed (#7440) |
| 45 | +- Update docstring of cross entropy loss (#7472) |
| 46 | +- Update pascal voc result (#7503) |
| 47 | +- We create How-to documentation to record any questions about How to xxx. In this version, we added |
| 48 | + - How to use Mosaic augmentation (#7507) |
| 49 | + - How to use backbone in mmcls (#7438) |
| 50 | + - How to produce and submit the prediction results of panoptic segmentation models on COCO test-dev set (#7430)) |
| 51 | + |
| 52 | +#### Contributors |
| 53 | + |
| 54 | +A total of 27 developers contributed to this release. |
| 55 | +Thanks @ZwwWayne, @haofanwang, @shinya7y, @chhluo, @yangrisheng, @triple-Mu, @jbwang1997, @HikariTJU, @imflash217, @274869388, @zytx121, @matrixgame2018, @jamiechoi1995, @BIGWangYuDong, @JingweiZhang12, @Xiangxu-0103, @hhaAndroid, @jshilong, @osbm, @ceroytres, @bunge-bedstraw-herb, @Youth-Got, @daavoo, @jiangyitong, @RangiLyu, @CCODING04, @yarkable |
| 56 | + |
| 57 | + |
| 58 | + |
3 | 59 | ### v2.22.0 (24/2/2022) |
4 | 60 |
|
5 | 61 | #### Highlights |
|
0 commit comments