parent
e461581e55
commit
85c0976bc2
|
@ -58,7 +58,7 @@ English | [简体中文](README_zh-CN.md)
|
|||
|
||||
## What's New
|
||||
|
||||
v0.10.0 was released on 2023-11-21.
|
||||
v0.10.1 was released on 2023-11-22.
|
||||
|
||||
Highlights:
|
||||
|
||||
|
@ -70,7 +70,7 @@ Highlights:
|
|||
|
||||
- Supports multiple visualization backends, including `NeptuneVisBackend`, `DVCLiveVisBackend` and `AimVisBackend`. Refer to [Visualization Backends](https://mmengine.readthedocs.io/en/latest/common_usage/visualize_training_log.html) for more details.
|
||||
|
||||
Read [Changelog](./docs/en/notes/changelog.md#v0100-21112023) for more details.
|
||||
Read [Changelog](./docs/en/notes/changelog.md#v0101-22112023) for more details.
|
||||
|
||||
## Table of Contents
|
||||
|
||||
|
|
|
@ -58,7 +58,7 @@
|
|||
|
||||
## 最近进展
|
||||
|
||||
最新版本 v0.10.0 在 2023.11.21 发布。
|
||||
最新版本 v0.10.1 在 2023.11.22 发布。
|
||||
|
||||
亮点:
|
||||
|
||||
|
@ -70,7 +70,7 @@
|
|||
|
||||
- 支持多种可视化后端,包括`NeptuneVisBackend`、`DVCLiveVisBackend` 和 `AimVisBackend`。可阅读[可视化后端](https://mmengine.readthedocs.io/zh_CN/latest/common_usage/visualize_training_log.html)了解用法。
|
||||
|
||||
如果想了解更多版本更新细节和历史信息,请阅读[更新日志](./docs/en/notes/changelog.md#v0100-21112023)
|
||||
如果想了解更多版本更新细节和历史信息,请阅读[更新日志](./docs/en/notes/changelog.md#v0101-22112023)
|
||||
|
||||
## 目录
|
||||
|
||||
|
|
|
@ -1,15 +1,30 @@
|
|||
# Changelog of v0.x
|
||||
|
||||
## v0.10.1 (22/11/2023)
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
- Fix collect_env without opencv by [@fanqiNO1](https://github.com/fanqiNO1) in https://github.com/open-mmlab/mmengine/pull/1434
|
||||
- Fix deploy.yml by [@fanqiNO1](https://github.com/fanqiNO1) in https://github.com/open-mmlab/mmengine/pull/1431
|
||||
|
||||
### Docs
|
||||
|
||||
- Add build mmengine-lite from source by [@fanqiNO1](https://github.com/fanqiNO1) in https://github.com/open-mmlab/mmengine/pull/1435
|
||||
|
||||
### Contributors
|
||||
|
||||
A total of 1 developers contributed to this release. Thanks [@fanqiNO1](https://github.com/fanqiNO1)
|
||||
|
||||
## v0.10.0 (21/11/2023)
|
||||
|
||||
### New Features & Enhancements
|
||||
|
||||
- Support for installing mmengine without opencv by [@fanqiNO1](https://github.com/fanqiNO1) in https://github.com/open-mmlab/mmengine/pull/1429
|
||||
- Support `exclude_frozen_parameters` for `DeepSpeedStrategy`'s `resume` by [@LZHgrla](https://github.com/LZHgrla) in https://github.com/open-mmlab/mmengine/pull/1424
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
- Fix bugs in colo optimwrapper by [@HIT-cwh](https://github.com/HIT-cwh) in https://github.com/open-mmlab/mmengine/pull/1426
|
||||
- Support `exclude_frozen_parameters` for `DeepSpeedStrategy`'s `resume` by [@LZHgrla](https://github.com/LZHgrla) in https://github.com/open-mmlab/mmengine/pull/1424
|
||||
- Fix `scale_lr` in `SingleDeviceStrategy` by [@fanqiNO1](https://github.com/fanqiNO1) in https://github.com/open-mmlab/mmengine/pull/1428
|
||||
- Fix CI for torch2.1.0 by [@fanqiNO1](https://github.com/fanqiNO1) in https://github.com/open-mmlab/mmengine/pull/1418
|
||||
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
# Copyright (c) OpenMMLab. All rights reserved.
|
||||
|
||||
__version__ = '0.10.0'
|
||||
__version__ = '0.10.1'
|
||||
|
||||
|
||||
def parse_version_info(version_str):
|
||||
|
|
Loading…
Reference in New Issue