Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump versions to v0.1.1 #101

Merged
merged 6 commits into from
Mar 14, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 11 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,18 @@ https://user-images.githubusercontent.com/10410257/154433305-416d129b-60c8-44c7-

</details>

## 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

Expand Down
13 changes: 13 additions & 0 deletions README_zh-CN.md
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,19 @@ https://user-images.githubusercontent.com/10410257/154433305-416d129b-60c8-44c7-

</details>

## 更新日志

最新的 **0.1.1** 版本已经在 2022.03.14 发布:
zytx121 marked this conversation as resolved.
Show resolved Hide resolved

- 为初学者添加了 [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) 进行安装。
Expand Down
40 changes: 40 additions & 0 deletions docs/en/changelog.md
Original file line number Diff line number Diff line change
@@ -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)
zytx121 marked this conversation as resolved.
Show resolved Hide resolved
- 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
1 change: 1 addition & 0 deletions docs/en/install.md
Original file line number Diff line number Diff line change
Expand Up @@ -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`.
Expand Down
1 change: 1 addition & 0 deletions docs/zh_cn/install.md
Original file line number Diff line number Diff line change
Expand Up @@ -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` 错误。

Expand Down
2 changes: 1 addition & 1 deletion mmrotate/version.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Copyright (c) OpenMMLab. All rights reserved.

__version__ = '0.1.0'
__version__ = '0.1.1'
short_version = __version__


Expand Down