|
1 | 1 | ## Changelog
|
2 | 2 |
|
| 3 | +### v1.0.0 (30/1/2020) |
| 4 | + |
| 5 | +This release mainly improves the code quality and add more docstrings. |
| 6 | + |
| 7 | +**Highlights** |
| 8 | +- Documentation is online now: https://mmdetection.readthedocs.io. |
| 9 | +- Support new models: [ATSS](https://arxiv.org/abs/1912.02424). |
| 10 | +- DCN is now available with the api `build_conv_layer` and `ConvModule` like the normal conv layer. |
| 11 | +- A tool to collect environment information is available for trouble shooting. |
| 12 | + |
| 13 | +**Bug Fixes** |
| 14 | +- Fix the incompatibility of the latest numpy and pycocotools. (#2024) |
| 15 | +- Fix the case when distributed package is unavailable, e.g., on Windows. (#1985) |
| 16 | +- Fix the dimension issue for `refine_bboxes()`. (#1962) |
| 17 | +- Fix the typo when `seg_prefix` is a list. (#1906) |
| 18 | +- Add segmentation map cropping to RandomCrop. (#1880) |
| 19 | +- Fix the return value of `ga_shape_target_single()`. (#1853) |
| 20 | +- Fix the loaded shape of empty proposals. (#1819) |
| 21 | +- Fix the mask data type when using albumentation. (#1818) |
| 22 | + |
| 23 | +**Improvements** |
| 24 | +- Enhance AssignResult and SamplingResult. (#1995) |
| 25 | +- Add ability to overwrite existing module in Registry. (#1982) |
| 26 | +- Reorganize requirements and make albumentations and imagecorruptions optional. (#1969) |
| 27 | +- Check NaN in `SSDHead`. (#1935) |
| 28 | +- Encapsulate the DCN in ResNe(X)t into a ConvModule & Conv_layers. (#1894) |
| 29 | +- Refactoring for mAP evaluation and support multiprocessing and logging. (#1889) |
| 30 | +- Init the root logger before constructing Runner to log more information. (#1865) |
| 31 | +- Split `SegResizeFlipPadRescale` into different existing transforms. (#1852) |
| 32 | +- Move `init_dist()` to MMCV. (#1851) |
| 33 | +- Documentation and docstring improvements. (#1971, #1938, #1869, #1838) |
| 34 | +- Fix the color of the same class for mask visualization. (#1834) |
| 35 | +- Remove the option `keep_all_stages` in HTC and Cascade R-CNN. (#1806) |
| 36 | + |
| 37 | +**New Features** |
| 38 | +- Add two test-time options `crop_mask` and `rle_mask_encode` for mask heads. (#2013) |
| 39 | +- Support loading grayscale images as single channel. (#1975) |
| 40 | +- Implement "Bridging the Gap Between Anchor-based and Anchor-free Detection via Adaptive Training Sample Selection". (#1872) |
| 41 | +- Add sphinx generated docs. (#1859, #1864) |
| 42 | +- Add GN support for flops computation. (#1850) |
| 43 | +- Collect env info for trouble shooting. (#1812) |
| 44 | + |
| 45 | + |
3 | 46 | ### v1.0rc1 (13/12/2019)
|
4 | 47 |
|
5 | 48 | The RC1 release mainly focuses on improving the user experience, and fixing bugs.
|
|
0 commit comments