Skip to content

Commit 26a105b

Browse files
[Release] v0.24.0 release (open-mmlab#1619)
1 parent 5e853b1 commit 26a105b

File tree

5 files changed

+26
-4
lines changed

5 files changed

+26
-4
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ The master branch works with **PyTorch 1.3+**.
7979
- (2021-10-25) We provide a [guide](https://github.com/open-mmlab/mmaction2/blob/master/configs/skeleton/posec3d/custom_dataset_training.md) on how to train PoseC3D with custom datasets, [bit-scientist](https://github.com/bit-scientist) authored this PR!
8080
- (2021-10-16) We support **PoseC3D** on UCF101 and HMDB51, achieves 87.0% and 69.3% Top-1 accuracy with 2D skeletons only. Pre-extracted 2D skeletons are also available.
8181

82-
**Release**: v0.23.0 was released in 01/04/2022. Please refer to [changelog.md](docs/changelog.md) for details and release history.
82+
**Release**: v0.24.0 was released in 05/05/2022. Please refer to [changelog.md](docs/changelog.md) for details and release history.
8383

8484
## Installation
8585

README_zh-CN.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ MMAction2 是一款基于 PyTorch 的视频理解开源工具箱,是 [OpenMMLa
7878
- (2021-10-25) 提供使用自定义数据集训练 PoseC3D 的 [教程](https://github.com/open-mmlab/mmaction2/blob/master/configs/skeleton/posec3d/custom_dataset_training.md),此 PR 由用户 [bit-scientist](https://github.com/bit-scientist) 完成!
7979
- (2021-10-16) 在 UCF101, HMDB51 上支持 **PoseC3D**,仅用 2D 关键点就可分别达到 87.0% 和 69.3% 的识别准确率。两数据集的预提取骨架特征可以公开下载。
8080

81-
v0.23.0 版本已于 2022 年 41 日发布,可通过查阅 [更新日志](/docs/changelog.md) 了解更多细节以及发布历史
81+
v0.24.0 版本已于 2022 年 55 日发布,可通过查阅 [更新日志](/docs/changelog.md) 了解更多细节以及发布历史
8282

8383
## 安装
8484

docker/serve/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ ARG CUDNN="7"
44
FROM pytorch/pytorch:${PYTORCH}-cuda${CUDA}-cudnn${CUDNN}-devel
55

66
ARG MMCV="1.3.8"
7-
ARG MMACTION="0.23.0"
7+
ARG MMACTION="0.24.0"
88

99
ENV PYTHONUNBUFFERED TRUE
1010

docs/changelog.md

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,27 @@
11
## Changelog
22

3+
### 0.24.0 (05/05/2022)
4+
5+
**Highlights**
6+
7+
- Support different seeds
8+
9+
**New Features**
10+
11+
- Add lateral norm in multigrid config ([#1567](https://github.com/open-mmlab/mmaction2/pull/1567))
12+
- Add openpose 25 joints in graph config ([#1578](https://github.com/open-mmlab/mmaction2/pull/1578))
13+
- Support MLU Backend ([#1608](https://github.com/open-mmlab/mmaction2/pull/1608))
14+
15+
**Bug and Typo Fixes**
16+
17+
- Fix local_rank ([#1558](https://github.com/open-mmlab/mmaction2/pull/1558))
18+
- Fix install typo ([#1571](https://github.com/open-mmlab/mmaction2/pull/1571))
19+
- Fix the inference API doc ([#1580](https://github.com/open-mmlab/mmaction2/pull/1580))
20+
- Fix zh-CN demo.md and getting_started.md ([#1587](https://github.com/open-mmlab/mmaction2/pull/1587))
21+
- Remove Recommonmark ([#1595](https://github.com/open-mmlab/mmaction2/pull/1595))
22+
- Fix inference with ndarray ([#1603](https://github.com/open-mmlab/mmaction2/pull/1603))
23+
- Fix the log error when `IterBasedRunner` is used ([#1606](https://github.com/open-mmlab/mmaction2/pull/1606))
24+
325
### 0.23.0 (04/01/2022)
426

527
**Highlights**

mmaction/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Copyright (c) Open-MMLab. All rights reserved.
22

3-
__version__ = '0.23.0'
3+
__version__ = '0.24.0'
44

55

66
def parse_version_info(version_str):

0 commit comments

Comments
 (0)