Skip to content

Commit d24701c

Browse files
authored
Bump version 1.0.0rc3 (#2211)
1 parent cead6f4 commit d24701c

File tree

3 files changed

+36
-13
lines changed

3 files changed

+36
-13
lines changed

README.md

Lines changed: 5 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -70,15 +70,11 @@ The 1.x branch works with **PyTorch 1.6+**.
7070

7171
## What's New
7272

73-
**Release**: v1.0.0rc2 with the following new features:
73+
**Release (2022.02.10)**: v1.0.0rc3 with the following new features:
7474

75-
- We Support Omni-Sourece training on ImageNet and Kinetics datasets.
76-
- We support exporting spatial-temporal detection models to ONNX.
77-
- We support **STGCN++** on NTU-RGB+D.
78-
- We support **MViT V2** on Kinetics 400 and something-V2.
79-
- We refine our skeleton-based pipelines and support the joint training of multi-stream skeleton information, including **joint, bone, joint-motion, and bone-motion**.
80-
- We support **VideoMAE** on Kinetics400.
81-
- We support **C2D** on Kinetics400, achieve 73.57% Top-1 accuracy (higher than 71.8% in the [paper](https://arxiv.org/abs/1711.07971)).
75+
- Support Action Recognition model UniFormer V1(ICLR'2022), UniFormer V2(Arxiv'2022).
76+
- Support training MViT V2(CVPR'2022), and MaskFeat(CVPR'2022) fine-tuning.
77+
- Add a new handy interface for inference MMAction2 models ([demo](https://github.com/open-mmlab/mmaction2/blob/dev-1.x/demo/README.md#inferencer))
8278

8379
## Installation
8480

@@ -209,7 +205,7 @@ If you have any feature requests, please feel free to leave a comment in [Issues
209205
<td><a href="https://github.com/open-mmlab/mmaction2/blob/1.x/tools/data/ucf101_24/README.md">UCF101-24*</a> (<a href="http://www.thumos.info/download.html">Homepage</a>) (CRCV-IR-12-01)</td>
210206
<td><a href="https://github.com/open-mmlab/mmaction2/blob/1.x/tools/data/jhmdb/README.md">JHMDB*</a> (<a href="http://jhmdb.is.tue.mpg.de/">Homepage</a>) (ICCV'2015)</td>
211207
<td><a href="https://github.com/open-mmlab/mmaction2/blob/1.x/tools/data/ava/README.md">AVA</a> (<a href="https://research.google.com/ava/index.html">Homepage</a>) (CVPR'2018)</td>
212-
<td></td>
208+
<td><a href="https://github.com/open-mmlab/mmaction2/blob/1.x/tools/data/ava_kinetics/README.md">AVA-Kinetics</a> (<a href="https://research.google.com/ava/index.html">Homepage</a>) (Arxiv'2020)</td>
213209
</tr>
214210
<tr>
215211
<td colspan="4" style="font-weight:bold;">Skeleton-based Action Recognition</td>

docs/en/notes/changelog.md

Lines changed: 30 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,45 @@
11
# Changelog
22

3+
## 1.0.0rc3 (2/10/2023)
4+
5+
**Highlights**
6+
7+
- Support Action Recognition model UniFormer V1(ICLR'2022), UniFormer V2(Arxiv'2022).
8+
- Support training MViT V2(CVPR'2022), and MaskFeat(CVPR'2022) fine-tuning.
9+
10+
**New Features**
11+
12+
- Support UniFormer V1/V2 ([#2153](https://github.com/open-mmlab/mmaction2/pull/2153))
13+
- Support training MViT, and MaskFeat fine-tuning ([#2186](https://github.com/open-mmlab/mmaction2/pull/2186))
14+
- Support a unified inference interface: Inferencer ([#2164](https://github.com/open-mmlab/mmaction2/pull/2164))
15+
16+
**Improvements**
17+
18+
- Support load data list from multi-backends ([#2176](https://github.com/open-mmlab/mmaction2/pull/2176))
19+
20+
**Bug Fixes**
21+
22+
- Upgrade isort to fix CI ([#2198](https://github.com/open-mmlab/mmaction2/pull/2198))
23+
- Fix bug in skeleton demo ([#2214](https://github.com/open-mmlab/mmaction2/pull/2214))
24+
25+
**Documentation**
26+
27+
- Add Chinese documentation for config.md ([#2188](https://github.com/open-mmlab/mmaction2/pull/2188))
28+
- Add readme for Omnisource ([#2205](https://github.com/open-mmlab/mmaction2/pull/2205))
29+
330
## 1.0.0rc2 (1/10/2023)
431

532
**Highlights**
633

7-
- Support Action Recognition model VideoMAE(NeurIPS'2022), MVit V2(CVPR'2022), C2D and skeleton-based action recognition model STGCN++
34+
- Support Action Recognition model VideoMAE(NeurIPS'2022), MViT V2(CVPR'2022), C2D and skeleton-based action recognition model STGCN++
835
- Support Omni-Source training on ImageNet and Kinetics datasets
936
- Support exporting spatial-temporal detection models to ONNX
1037

1138
**New Features**
1239

1340
- Support VideoMAE ([#1942](https://github.com/open-mmlab/mmaction2/pull/1942))
1441
- Support MViT V2 ([#2007](https://github.com/open-mmlab/mmaction2/pull/2007))
15-
- Supoort C2D ([#2022](https://github.com/open-mmlab/mmaction2/pull/2022))
42+
- Support C2D ([#2022](https://github.com/open-mmlab/mmaction2/pull/2022))
1643
- Support AVA-Kinetics dataset ([#2080](https://github.com/open-mmlab/mmaction2/pull/2080))
1744
- Support STGCN++ ([#2156](https://github.com/open-mmlab/mmaction2/pull/2156))
1845
- Support exporting spatial-temporal detection models to ONNX ([#2148](https://github.com/open-mmlab/mmaction2/pull/2148))
@@ -61,7 +88,7 @@
6188
- Refine some docs ([#2038](https://github.com/open-mmlab/mmaction2/pull/2038)), ([#2040](https://github.com/open-mmlab/mmaction2/pull/2040)), ([#2058](https://github.com/open-mmlab/mmaction2/pull/2058))
6289
- Update TSN/TSM Readme ([#2082](https://github.com/open-mmlab/mmaction2/pull/2082))
6390
- Add chinese document ([#2083](https://github.com/open-mmlab/mmaction2/pull/2083))
64-
- Adjust docment structure ([#2088](https://github.com/open-mmlab/mmaction2/pull/2088))
91+
- Adjust document structure ([#2088](https://github.com/open-mmlab/mmaction2/pull/2088))
6592
- Fix Sth-Sth and Jester dataset links ([#2103](https://github.com/open-mmlab/mmaction2/pull/2103))
6693
- Fix doc link ([#2131](https://github.com/open-mmlab/mmaction2/pull/2131))
6794

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__ = '1.0.0rc2'
3+
__version__ = '1.0.0rc3'
44

55

66
def parse_version_info(version_str: str):

0 commit comments

Comments
 (0)