From 1f6549eeee6e6a8e21996dcf9f4d19d9ac225fe8 Mon Sep 17 00:00:00 2001 From: LXXXXR <73265258+LXXXXR@users.noreply.github.com> Date: Thu, 1 Apr 2021 10:39:18 +0800 Subject: [PATCH] bump version to 0.10.0 (#194) --- README.md | 2 +- docs/changelog.md | 25 +++++++++++++++++++++++++ docs/install.md | 13 ++++++++++++- mmcls/version.py | 2 +- requirements/readthedocs.txt | 2 +- 5 files changed, 40 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 2d6c9b85075..67e71f414dc 100644 --- a/README.md +++ b/README.md @@ -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 diff --git a/docs/changelog.md b/docs/changelog.md index d9953db875e..ea972d6de18 100644 --- a/docs/changelog.md +++ b/docs/changelog.md @@ -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. diff --git a/docs/install.md b/docs/install.md index c6b3afe9371..8541aa1461f 100644 --- a/docs/install.md +++ b/docs/install.md @@ -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 diff --git a/mmcls/version.py b/mmcls/version.py index 4f152598793..03a4cc7c7be 100644 --- a/mmcls/version.py +++ b/mmcls/version.py @@ -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): diff --git a/requirements/readthedocs.txt b/requirements/readthedocs.txt index 0367917f619..a959c28d439 100644 --- a/requirements/readthedocs.txt +++ b/requirements/readthedocs.txt @@ -1,3 +1,3 @@ -mmcv>=1.1.4 +mmcv>=1.3.0 torch torchvision