Skip to content

Commit fec3aed

Browse files
cir7ly015
authored andcommitted
Bump version to 1.0.0rc2 (#2169)
1 parent baa264b commit fec3aed

File tree

9 files changed

+77
-15
lines changed

9 files changed

+77
-15
lines changed

.circleci/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -177,7 +177,7 @@ workflows:
177177
name: minimum_version_cpu
178178
torch: 1.6.0
179179
torchvision: 0.7.0
180-
python: 3.6.9 # The lowest python 3.6.x version available on CircleCI images
180+
python: 3.7.4
181181
requires:
182182
- lint
183183
- build_cpu:

.github/workflows/merge_stage_test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
runs-on: ubuntu-18.04
2222
strategy:
2323
matrix:
24-
python-version: [3.6, 3.8, 3.9]
24+
python-version: [3.8, 3.9]
2525
torch: [1.8.1]
2626
include:
2727
- torch: 1.8.1

README.md

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

7171
## What's New
7272

73-
- (2023-1-5) We support STGCN++ on NTU-RGB+D.
74-
- (2022-11-30) We refine our skeleton-based pipelines and support the joint training of multi-stream skeleton information, including **joint, bone, joint-motion, and bone-motion**.
75-
- (2022-10-11) We support **Video Swin Transformer** on Kinetics400 and additionally train a Swin-L model on Kinetics700 to extract video features for downstream tasks.
76-
- (2022-10-25) We support **VideoMAE** on Kinetics400.
77-
- (2022-10-28) We support **C2D** on Kinetics400, achieve 73.57% Top-1 accuracy (higher than 71.8% in the [paper](https://arxiv.org/abs/1711.07971)).
78-
79-
**Release**: v1.0.0rc1 was released in 14/10/2022. Please refer to [changelog.md](docs/en/notes/changelog.md) for details and release history.
73+
**Release**: v1.0.0rc2 with the following new features:
74+
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)).
8082

8183
## Installation
8284

docs/en/get_started.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
In this section we demonstrate how to prepare an environment with PyTorch.
44

5-
MMAction2 works on Linux, Windows and macOS. It requires Python 3.6+, CUDA 9.2+ and PyTorch 1.6+.
5+
MMAction2 works on Linux, Windows and macOS. It requires Python 3.7+, CUDA 9.2+ and PyTorch 1.6+.
66

77
```{note}
88
If you are experienced with PyTorch and have already installed it, just skip this part and jump to the [next section](#installation). Otherwise, you can follow these steps for the preparation.

docs/en/notes/changelog.md

Lines changed: 62 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,67 @@
11
# Changelog
22

3-
## 1.0.0rc1 (14/10/2022)
3+
## 1.0.0rc2 (1/6/2023)
4+
5+
**Highlights**
6+
7+
**New Features**
8+
9+
- Support VideoMAE ([#1942](https://github.com/open-mmlab/mmaction2/pull/1942))
10+
- Support MViT V2 ([#2007](https://github.com/open-mmlab/mmaction2/pull/2007))
11+
- Supoort C2D ([#2022](https://github.com/open-mmlab/mmaction2/pull/2022))
12+
- Support AVA-Kinetics dataset ([#2080](https://github.com/open-mmlab/mmaction2/pull/2080))
13+
- Support STGCN++ ([#2156](https://github.com/open-mmlab/mmaction2/pull/2156))
14+
- Support exporting spatial-temporal detection models to ONNX ([#2148](https://github.com/open-mmlab/mmaction2/pull/2148))
15+
- Support Omni-Sourece training on ImageNet and Kinetics datasets ([#2143](https://github.com/open-mmlab/mmaction2/pull/2143))
16+
17+
**Improvements**
18+
19+
- Support repeat batch data augmentation ([#2170](https://github.com/open-mmlab/mmaction2/pull/2170))
20+
- Support calculating FLOPs tool powered by fvcore ([#1997](https://github.com/open-mmlab/mmaction2/pull/1997))
21+
- Support Spatial-temporal detection demo ([#2019](https://github.com/open-mmlab/mmaction2/pull/2019))
22+
- Add SyncBufferHook and add randomness config in train.py ([#2044](https://github.com/open-mmlab/mmaction2/pull/2044))
23+
- Refactor gradcam ([#2049](https://github.com/open-mmlab/mmaction2/pull/2049))
24+
- Support init_cfg in Swin and ViTMAE ([#2055](https://github.com/open-mmlab/mmaction2/pull/2055))
25+
- Refactor STGCN and related pipelines ([#2087](https://github.com/open-mmlab/mmaction2/pull/2087))
26+
- Refactor visualization tools ([#2092](https://github.com/open-mmlab/mmaction2/pull/2092))
27+
- Update `SampleFrames` transform and improve most models' performance ([#1942](https://github.com/open-mmlab/mmaction2/pull/1942))
28+
- Support real-time webcam demo ([#2152](https://github.com/open-mmlab/mmaction2/pull/2152))
29+
- Refactor and enhance 2s-AGCN ([#2130](https://github.com/open-mmlab/mmaction2/pull/2130))
30+
- Support adjusting fps in `SampleFrame` ([#2157](https://github.com/open-mmlab/mmaction2/pull/2157))
31+
32+
**Bug Fixes**
33+
34+
- Fix CI upstream library dependency ([#2000](https://github.com/open-mmlab/mmaction2/pull/2000))
35+
- Fix SlowOnly readme typos and results ([#2006](https://github.com/open-mmlab/mmaction2/pull/2006))
36+
- Fix VideoSwin readme ([#2010](https://github.com/open-mmlab/mmaction2/pull/2010))
37+
- Fix tools and mim error ([#2028](https://github.com/open-mmlab/mmaction2/pull/2028))
38+
- Fix Imgaug wrapper ([#2024](https://github.com/open-mmlab/mmaction2/pull/2024))
39+
- Remove useless scripts ([#2032](https://github.com/open-mmlab/mmaction2/pull/2032))
40+
- Fix multi-view inference ([#2045](https://github.com/open-mmlab/mmaction2/pull/2045))
41+
- Update mmcv maximum version to 1.8.0 ([#2047](https://github.com/open-mmlab/mmaction2/pull/2047))
42+
- Fix torchserver dependency ([#2053](https://github.com/open-mmlab/mmaction2/pull/2053))
43+
- Fix `gen_ntu_rgbd_raw` script ([#2076](https://github.com/open-mmlab/mmaction2/pull/2076))
44+
- Update AVA-Kinetics experiment configs and results ([#2099](https://github.com/open-mmlab/mmaction2/pull/2099))
45+
- Add `joint.pkl` and `bone.pkl` used in multi-stream fusion tool ([#2106](https://github.com/open-mmlab/mmaction2/pull/2106))
46+
- Fix lint CI config ([#2110](https://github.com/open-mmlab/mmaction2/pull/2110))
47+
- Update testing accuracy for modified `SampleFrames` ([#2117](https://github.com/open-mmlab/mmaction2/pull/2117)), ([#2121](https://github.com/open-mmlab/mmaction2/pull/2121)), ([#2122](https://github.com/open-mmlab/mmaction2/pull/2122)), ([#2124](https://github.com/open-mmlab/mmaction2/pull/2124)), ([#2125](https://github.com/open-mmlab/mmaction2/pull/2125)), ([#2126](https://github.com/open-mmlab/mmaction2/pull/2126)), ([#2129](https://github.com/open-mmlab/mmaction2/pull/2129)), ([#2128](https://github.com/open-mmlab/mmaction2/pull/2128))
48+
- Fix timm related bug ([#1976](https://github.com/open-mmlab/mmaction2/pull/1976))
49+
- Fix `check_videos.py` script ([#2134](https://github.com/open-mmlab/mmaction2/pull/2134))
50+
- Update CI maximum torch version to 1.13.0 ([#2118](https://github.com/open-mmlab/mmaction2/pull/2118))
51+
52+
**Documentation**
53+
54+
- Add MMYOLO description in README ([#2011](https://github.com/open-mmlab/mmaction2/pull/2011))
55+
- Add v1.x introduction in README ([#2023](https://github.com/open-mmlab/mmaction2/pull/2023))
56+
- Fix link in README ([#2035](https://github.com/open-mmlab/mmaction2/pull/2035))
57+
- 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))
58+
- Update TSN/TSM Readme ([#2082](https://github.com/open-mmlab/mmaction2/pull/2082))
59+
- Add chinese document ([#2083](https://github.com/open-mmlab/mmaction2/pull/2083))
60+
- Adjust docment structure ([#2088](https://github.com/open-mmlab/mmaction2/pull/2088))
61+
- Fix Sth-Sth and Jester dataset links ([#2103](https://github.com/open-mmlab/mmaction2/pull/2103))
62+
- Fix doc link ([#2131](https://github.com/open-mmlab/mmaction2/pull/2131))
63+
64+
## 1.0.0rc1 (10/14/2022)
465

566
**Highlights**
667

docs/zh_cn/get_started.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
在本节中,我们将演示如何准备 PyTorch 相关的依赖环境。
44

5-
MMAction2 适用于 Linux、Windows 和 MacOS。它需要 Python 3.6+,CUDA 9.2+ 和 PyTorch 1.6+。
5+
MMAction2 适用于 Linux、Windows 和 MacOS。它需要 Python 3.7+,CUDA 9.2+ 和 PyTorch 1.6+。
66

77
```
88
如果你对配置 PyTorch 环境已经很熟悉,并且已经完成了配置,可以直接进入[下一节](#安装)。

mmaction/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
mmcv_maximum_version = '2.1.0'
1010
mmcv_version = digit_version(mmcv.__version__)
1111

12-
mmengine_minimum_version = '0.1.0'
12+
mmengine_minimum_version = '0.3.0'
1313
mmengine_maximum_version = '1.0.0'
1414
mmengine_version = digit_version(mmengine.__version__)
1515

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.0rc1'
3+
__version__ = '1.0.0rc2'
44

55

66
def parse_version_info(version_str: str):

setup.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -179,7 +179,6 @@ def add_mim_extension():
179179
'License :: OSI Approved :: Apache Software License',
180180
'Operating System :: OS Independent',
181181
'Programming Language :: Python :: 3',
182-
'Programming Language :: Python :: 3.6',
183182
'Programming Language :: Python :: 3.7',
184183
'Programming Language :: Python :: 3.8',
185184
'Programming Language :: Python :: 3.9',

0 commit comments

Comments
 (0)