Skip to content

Commit

Permalink
Bump version to v0.2.0 (#170)
Browse files Browse the repository at this point in the history
* Bump vision to v0.2.0

* Update vision in changelog

* Update changelog

* Update changelog.md

* Update changelog.md

* Update pr 175
  • Loading branch information
jbwang1997 authored Apr 1, 2022
1 parent d11241f commit 44b0aec
Show file tree
Hide file tree
Showing 6 changed files with 38 additions and 17 deletions.
12 changes: 4 additions & 8 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -64,14 +64,10 @@ 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)
**0.2.0** was released in 30/3/2022:

- Support Circular Smooth Label (CSL, ECCV'20) (#153)
- Add [browse_dataset](tools/misc/browse_dataset.py) tool (#98)

Please refer to [changelog.md](docs/en/changelog.md) for details and release history.

Expand Down
12 changes: 4 additions & 8 deletions README_zh-CN.md
Original file line number Diff line number Diff line change
Expand Up @@ -61,14 +61,10 @@ 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).
最新的 **0.2.0** 版本已经在 2022.03.14 发布:

- 支持了 Circular Sommth Label (CSL, ECCV'20) 模型 (#153)
- 增加了[数据集浏览工具](tools/misc/browse_dataset.py) (#98)

如果想了解更多版本更新细节和历史信息,请阅读[更新日志](docs/en/changelog.md)

Expand Down
27 changes: 27 additions & 0 deletions docs/en/changelog.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,32 @@
## Changelog

### v0.2.0 (30/3/2022)

#### New Features

- Support Circular Smooth Label (CSL, ECCV'20) (#153)
- Support multiple machines dist_train (#143)
- Add [browse_dataset](tools/misc/browse_dataset.py) tool (#98)
- Add [gather_models](.dev_scripts/gather_models.py) script (#162)

#### Bug Fixes

- Remove in-place operations in rbbox_overlaps (#155)
- Fix bug in docstring. (#137)
- Fix bug in HRSCDataset with `clasesswise=ture` (#175)

#### Improvements

- Add Chinese translation of `docs/zh_cn/tutorials/customize_dataset.md` (#65)
- Add different seeds to different ranks (#102)
- Update from-scratch install script in install.md (#166)
- Improve the arguments of all mmrotate scripts (#168)

#### Contributors

A total of 6 developers contributed to this release.
Thanks @zytx121 @yangxue0827 @ZwwWayne @jbwang1997 @canoe-Z @matrixgame2018

### v0.1.1 (14/3/2022)

#### New Features
Expand Down
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.1 | 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.
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.1 | 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.1'
__version__ = '0.2.0'
short_version = __version__


Expand Down

0 comments on commit 44b0aec

Please sign in to comment.