mirror of
https://github.com/open-mmlab/mmengine.git
synced 2025-06-03 21:54:44 +08:00
Bump version to v0.3.2 (#763)
* Bump version to v0.3.2 * minor refine * Apply suggestions from code review Co-authored-by: Zaida Zhou <58739961+zhouzaida@users.noreply.github.com> * remove highlights Co-authored-by: Zaida Zhou <58739961+zhouzaida@users.noreply.github.com>
This commit is contained in:
parent
5f58517069
commit
17624d250e
@ -58,11 +58,9 @@ Major features:
|
||||
|
||||
## What's New
|
||||
|
||||
v0.3.1 was released in 2022-11-09.
|
||||
v0.3.2 was released in 2022-11-24.
|
||||
|
||||
**Fix error when saving best checkpoint in ddp-training**.
|
||||
|
||||
Read [Changelog](./docs/en/notes/changelog.md#v0.3.1 "09/11/2022") for more details.
|
||||
Read [Changelog](./docs/en/notes/changelog.md#v032-11242022) for more details.
|
||||
|
||||
## Installation
|
||||
|
||||
|
@ -60,11 +60,9 @@ MMEngine 是一个基于 PyTorch 用于深度学习模型训练的基础库,
|
||||
|
||||
## 最近进展
|
||||
|
||||
最新版本 v0.3.1 在 2022.11.09 发布。
|
||||
最新版本 v0.3.2 在 2022.11.24 发布。
|
||||
|
||||
**修复分布式训练时,保存最佳 checkpoint 报错问题**。
|
||||
|
||||
如果想了解更多版本更新细节和历史信息,请阅读[更新日志](./docs/en/notes/changelog.md#v0.3.1 "09/11/2022")
|
||||
如果想了解更多版本更新细节和历史信息,请阅读[更新日志](./docs/en/notes/changelog.md#v032-11242022)
|
||||
|
||||
## 安装
|
||||
|
||||
|
@ -1,5 +1,31 @@
|
||||
# Changelog of v0.x
|
||||
|
||||
## v0.3.2 (11/24/2022)
|
||||
|
||||
### New Features & Enhancements
|
||||
|
||||
- Send git errors to subprocess.PIPE by @austinmw in https://github.com/open-mmlab/mmengine/pull/717
|
||||
- Add a common `TestRunnerTestCase` to build a Runner instance. by @HAOCHENYE in https://github.com/open-mmlab/mmengine/pull/631
|
||||
- Align the log by @HAOCHENYE in https://github.com/open-mmlab/mmengine/pull/436
|
||||
- Log the called order of hooks during training process by @songyuc in https://github.com/open-mmlab/mmengine/pull/672
|
||||
- Support setting `eta_min_ratio` in `CosineAnnealingParamScheduler` by @cir7 in https://github.com/open-mmlab/mmengine/pull/725
|
||||
- Enhance compatibility of `revert_sync_batchnorm` by @HAOCHENYE in https://github.com/open-mmlab/mmengine/pull/695
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
- Fix `distributed_training.py` in examples by @PingHGao in https://github.com/open-mmlab/mmengine/pull/700
|
||||
- Format the log of `CheckpointLoader.load_checkpoint` by @HAOCHENYE in https://github.com/open-mmlab/mmengine/pull/685
|
||||
- Fix bug of CosineAnnealingParamScheduler by @fangyixiao18 in https://github.com/open-mmlab/mmengine/pull/735
|
||||
- Fix `add_graph` is not called bug by @shenmishajing in https://github.com/open-mmlab/mmengine/pull/632
|
||||
- Fix .pre-commit-config-zh-cn.yaml pyupgrade-repo github->gitee by @BayMaxBHL in https://github.com/open-mmlab/mmengine/pull/756
|
||||
|
||||
### Docs
|
||||
|
||||
- Add English docs of BaseDataset by @GT9505 in https://github.com/open-mmlab/mmengine/pull/713
|
||||
- Fix `BaseDataset` typo about lazy initialization by @MengzhangLI in https://github.com/open-mmlab/mmengine/pull/733
|
||||
- Fix typo by @zhouzaida in https://github.com/open-mmlab/mmengine/pull/734
|
||||
- Translate visualization docs by @xin-li-67 in https://github.com/open-mmlab/mmengine/pull/692
|
||||
|
||||
## v0.3.1 (11/09/2022)
|
||||
|
||||
### Highlights
|
||||
|
@ -1,6 +1,6 @@
|
||||
# Copyright (c) OpenMMLab. All rights reserved.
|
||||
|
||||
__version__ = '0.3.1'
|
||||
__version__ = '0.3.2'
|
||||
|
||||
|
||||
def parse_version_info(version_str):
|
||||
|
Loading…
x
Reference in New Issue
Block a user