bump version to 0.10.0 (#194)

pull/208/head v0.10.0
LXXXXR 2021-04-01 10:39:18 +08:00 committed by GitHub
parent 93cd960466
commit 1f6549eeee
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
5 changed files with 40 additions and 4 deletions

View File

@ -29,7 +29,7 @@ This project is released under the [Apache 2.0 license](LICENSE).
## Changelog
v0.9.0 was released in 1/3/2021.
v0.10.0 was released in 1/4/2021.
Please refer to [changelog.md](docs/changelog.md) for details and release history.
## Benchmark and model zoo

View File

@ -1,5 +1,30 @@
## Changelog
### v0.10.0(1/4/2021)
- Support AutoAugmentation
- Add tutorials for installation and usage.
#### New Features
- Add `Rotate` pipeline for data augmentation. (#167)
- Add `Invert` pipeline for data augmentation. (#168)
- Add `Color` pipeline for data augmentation. (#171)
- Add `Solarize` and `Posterize` pipeline for data augmentation. (#172)
- Support fp16 training. (#178)
- Add tutorials for installation and basic usage of MMClassification.(#176)
- Support `AutoAugmentation`, `AutoContrast`, `Equalize`, `Contrast`, `Brightness` and `Sharpness` pipelines for data augmentation. (#179)
#### Improvements
- Support dynamic shape export to onnx. (#175)
- Release training configs and update model zoo for fp16 (#184)
- Use MMCV's EvalHook in MMClassification (#182)
#### Bug Fixes
- Fix wrong naming in vgg config (#181)
### v0.9.0(1/3/2021)
- Implement mixup trick.

View File

@ -4,7 +4,18 @@
- Python 3.6+
- PyTorch 1.3+
- [mmcv](https://github.com/open-mmlab/mmcv) 1.1.4+
- [MMCV](https://github.com/open-mmlab/mmcv)
The compatible MMClassification and MMCV versions are as below. Please install the correct version of MMCV to avoid installation issues.
| MMClassification version | MMCV version |
|:-------------------:|:-------------------:|
| master | mmcv>=1.3.0 |
| 0.10.0 | mmcv>=1.3.0 |
| 0.9.0 | mmcv>=1.1.4 |
| 0.8.0 | mmcv>=1.1.4 |
| 0.7.0 | mmcv>=1.1.4 |
| 0.6.0 | mmcv>=1.1.4 |
### Install MMClassification

View File

@ -1,6 +1,6 @@
# Copyright (c) Open-MMLab. All rights reserved.
__version__ = '0.9.0'
__version__ = '0.10.0'
def parse_version_info(version_str):

View File

@ -1,3 +1,3 @@
mmcv>=1.1.4
mmcv>=1.3.0
torch
torchvision