diff --git a/README.md b/README.md index ce696626a..64e06cc6e 100644 --- a/README.md +++ b/README.md @@ -62,7 +62,18 @@ https://user-images.githubusercontent.com/10410257/154433305-416d129b-60c8-44c7- +## Changelog +**0.1.1** was released in 14/3/2022: + +- Add [colab tutorial](demo/MMRotate_Tutorial.ipynb) for beginners (#66) +- Support [huge image inference](deom/huge_image_demo.py) (#34) +- Support HRSC Dataset (#96) +- Support mixed precision training (#72) +- Add inference speed statistics [tool](tools/analysis_tools/benchmark.py) (#86) +- Add confusion matrix analysis [tool](tools/analysis_tools/confusion_matrix.py) (#93) + +Please refer to [changelog.md](docs/en/changelog.md) for details and release history. ## Installation diff --git a/README_zh-CN.md b/README_zh-CN.md index b56bd0bef..4e5de4a04 100644 --- a/README_zh-CN.md +++ b/README_zh-CN.md @@ -59,6 +59,19 @@ https://user-images.githubusercontent.com/10410257/154433305-416d129b-60c8-44c7- +## 更新日志 + +最新的 **0.1.1** 版本已经在 2022.03.14 发布: + +- 为初学者添加了 [Colab 教程](demo/MMRotate_Tutorial.ipynb) +- 支持了[大图推理](deom/huge_image_demo.py) +- 支持了 HRSC 遥感数据集 +- 支持了混合精度训练 +- 添加了推理速度[统计工具](tools/analysis_tools/benchmark.py) +- 添加了混淆矩阵[分析工具](tools/analysis_tools/confusion_matrix.py). + +如果想了解更多版本更新细节和历史信息,请阅读[更新日志](docs/en/changelog.md)。 + ## 安装 请参考 [安装指南](docs/zh_cn/install.md) 进行安装。 diff --git a/docs/en/changelog.md b/docs/en/changelog.md index 8a802039f..3de1f066c 100644 --- a/docs/en/changelog.md +++ b/docs/en/changelog.md @@ -1 +1,41 @@ ## Changelog + +### v0.1.1 (14/3/2022) + +#### New Features + +- Support [huge image inference](deom/huge_image_demo.py) (#34) +- Support HRSC Dataset (#96) +- Support mixed precision training (#72) +- Add [colab tutorial](demo/MMRotate_Tutorial.ipynb) for beginners (#66) +- Add inference speed statistics [tool](tools/analysis_tools/benchmark.py) (#86) +- Add confusion matrix analysis [tool](tools/analysis_tools/confusion_matrix.py) (#93) + +#### Bug Fixes + +- Fix URL error of Swin pretrained model (#111) +- Fix bug for SASM during training (#105) +- Fix rbbox_overlaps abnormal when the box is too small (#61) +- Fix bug for visualization (#12, #81) +- Fix stuck when compute mAP (#14, #52) +- Fix 'RoIAlignRotated' object has no attribute 'out_size' bug (#51) +- Add missing init_cfg in dense head (#37) +- Fix install an additional mmcv (#17) +- Fix typos in docs (#3, #11, #36) + +#### Improvements + +- Move `eval_rbbox_map` from `mmrotate.datasets` to `mmrotate.core.evaluation` (#73) +- Add Windows CI (#31) +- Add copyright commit hook (#30) +- Add Chinese translation of `docs/zh_cn/get_started.md` (#16) +- Add Chinese translation of `docs/zh_cn/tutorials/customize_runtime.md` (#22) +- Add Chinese translation of ` docs/zh_cn/tutorials/customize_config.md` (#23) +- Add Chinese translation of `docs/zh_cn/tutorials/customize_models.md` (#27) +- Add Chinese translation of `docs/zh_cn/model_zoo.md` (#28) +- Add Chinese translation of `docs/zh_cn/faq.md` (#33) + +#### Contributors + +A total of 13 developers contributed to this release. +Thanks @zytx121 @yangxue0827 @jbwang1997 @liuyanyi @DangChuong-DC @RangeKing @liufeinuaa @np-csu @akmalulkhairin @SheffieldCao @BrotherHappy @Abyssaledge @q3394101 diff --git a/docs/en/install.md b/docs/en/install.md index 3f4c910b5..9afaa3777 100644 --- a/docs/en/install.md +++ b/docs/en/install.md @@ -14,6 +14,7 @@ Compatible MMCV, MMClassification and MMDetection versions are shown as below. P | MMRotate version | MMCV version | MMDetection version | |:-------------------:|:-----------------:|:---------------------------------:| | master | mmcv-full>=1.4.5 | mmdet >= 2.19.0 | +| 0.1.0 | mmcv-full>=1.4.5 | mmdet >= 2.19.0 | **Note:** You need to run `pip uninstall mmcv` first if you have mmcv installed. If mmcv and mmcv-full are both installed, there will be `ModuleNotFoundError`. diff --git a/docs/zh_cn/install.md b/docs/zh_cn/install.md index 480422576..1e2f40c14 100644 --- a/docs/zh_cn/install.md +++ b/docs/zh_cn/install.md @@ -14,6 +14,7 @@ MMRotate 和 MMCV, MMDet 版本兼容性如下所示,需要安装正确的版 | MMRotate 版本 | MMCV 版本 | MMDetection 版本 | |:-------------------:|:-----------------:|:---------------------------------:| | master | mmcv-full>=1.4.5 | mmdet >= 2.19.0 | +| 0.1.0 | mmcv-full>=1.4.5 | mmdet >= 2.19.0 | **注意:**如果已经安装了 mmcv,首先需要使用 `pip uninstall mmcv` 卸载已安装的 mmcv,如果同时安装了 mmcv 和 mmcv-full,将会报 `ModuleNotFoundError` 错误。 diff --git a/mmrotate/version.py b/mmrotate/version.py index 6a935c2bd..ac2265ae6 100644 --- a/mmrotate/version.py +++ b/mmrotate/version.py @@ -1,6 +1,6 @@ # Copyright (c) OpenMMLab. All rights reserved. -__version__ = '0.1.0' +__version__ = '0.1.1' short_version = __version__