From 7ca0ca271f07bd504844917739f668b02112302d Mon Sep 17 00:00:00 2001 From: LXXXXR <73265258+LXXXXR@users.noreply.github.com> Date: Mon, 1 Mar 2021 20:14:53 +0800 Subject: [PATCH] Bump version to 0.9.0 (#166) * update docs for version 0.9.0 * add missing #153 --- README.md | 2 +- docs/changelog.md | 21 +++++++++++++++++++++ mmcls/version.py | 2 +- 3 files changed, 23 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 5ac4c300ab3..2d6c9b85075 100644 --- a/README.md +++ b/README.md @@ -29,7 +29,7 @@ This project is released under the [Apache 2.0 license](LICENSE). ## Changelog -v0.8.0 was released in 31/1/2021. +v0.9.0 was released in 1/3/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 cacd9352a90..d9953db875e 100644 --- a/docs/changelog.md +++ b/docs/changelog.md @@ -1,5 +1,26 @@ ## Changelog +### v0.9.0(1/3/2021) + +- Implement mixup trick. +- Add a new tool to create TensorRT engine from ONNX, run inference and verify outputs in Python. + +#### New Features + +- Implement mixup and provide configs of training ResNet50 using mixup. (#160) +- Add `Shear` pipeline for data augmentation. (#163) +- Add `Translate` pipeline for data augmentation. (#165) +- Add `tools/onnx2tensorrt.py` as a tool to create TensorRT engine from ONNX, run inference and verify outputs in Python. (#153) + +#### Improvements + +- Add `--eval-options` in `tools/test.py` to support eval options override, matching the behavior of other open-mmlab projects. (#158) +- Support showing and saving painted results in `mmcls.apis.test` and `tools/test.py`, matching the behavior of other open-mmlab projects. (#162) + +#### Bug Fixes + +- Fix configs for VGG, replace checkpoints converted from other repos with the ones trained by ourselves and upload the missing logs in the model zoo. (#161) + ### v0.8.0(31/1/2021) - Support multi-label task. diff --git a/mmcls/version.py b/mmcls/version.py index 75f966eb36e..4f152598793 100644 --- a/mmcls/version.py +++ b/mmcls/version.py @@ -1,6 +1,6 @@ # Copyright (c) Open-MMLab. All rights reserved. -__version__ = '0.8.0' +__version__ = '0.9.0' def parse_version_info(version_str):