Skip to content

Commit 0d8f918

Browse files
authored
Bump version to v1.0.0rc5. (#1286)
1 parent 4f5350f commit 0d8f918

File tree

6 files changed

+54
-3
lines changed

6 files changed

+54
-3
lines changed

README.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -58,6 +58,14 @@ The `1.x` branch works with **PyTorch 1.6+**.
5858

5959
## What's new
6060

61+
v1.0.0rc5 was released in 30/12/2022
62+
63+
- Support **EVA**, **RevViT**, **EfficientnetV2**, **CLIP**, **TinyViT** and **MixMIM** backbones.
64+
- Reproduce the training accuracy of **ConvNeXt** and **RepVGG**.
65+
- Support **multi-task** training and testing. See [#1229](https://github.com/open-mmlab/mmclassification/pull/1229) for more details.
66+
- Support Test-time Augmentation. See [#1161](https://github.com/open-mmlab/mmclassification/pull/1161) for
67+
more details.
68+
6169
v1.0.0rc4 was released in 06/12/2022.
6270

6371
- Upgrade API to get pre-defined models of MMClassification. See [#1236](https://github.com/open-mmlab/mmclassification/pull/1236) for more details.

README_zh-CN.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -57,6 +57,13 @@ MMClassification 是一款基于 PyTorch 的开源图像分类工具箱,是 [O
5757

5858
## 更新日志
5959

60+
2022/12/30 发布了 v1.0.0rc5 版本
61+
62+
- 支持了**EVA**, **RevViT**, **EfficientnetV2**, **CLIP**, **TinyViT****MixMIM** 等骨干网络结构
63+
- 复现了 ConvNeXt 和 RepVGG 的训练精度。
64+
- 支持了 **多任务** 训练和测试,详见 [#1229](https://github.com/open-mmlab/mmclassification/pull/1229)
65+
- 支持了测试时增强(TTA),详见 [#1161](https://github.com/open-mmlab/mmclassification/pull/1161)
66+
6067
2022/12/06 发布了 v1.0.0rc4 版本
6168

6269
- 更新了主要 API 接口,用以方便地获取 MMClassification 中预定义的模型。详见 [#1236](https://github.com/open-mmlab/mmclassification/pull/1236)

docs/en/notes/changelog.md

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

3+
## v1.0.0rc5(30/12/2022)
4+
5+
### Highlights
6+
7+
- Support EVA, RevViT, EfficientnetV2, CLIP, TinyViT and MixMIM backbones.
8+
- Reproduce the training accuracy of ConvNeXt and RepVGG.
9+
- Support multi-task training and testing.
10+
- Support Test-time Augmentation.
11+
12+
### New Features
13+
14+
- [Feature] Add EfficientnetV2 Backbone. ([#1253](https://github.com/open-mmlab/mmclassification/pull/1253))
15+
- [Feature] Support TTA and add `--tta` in `tools/test.py`. ([#1161](https://github.com/open-mmlab/mmclassification/pull/1161))
16+
- [Feature] Support Multi-task. ([#1229](https://github.com/open-mmlab/mmclassification/pull/1229))
17+
- [Feature] Add clip backbone. ([#1258](https://github.com/open-mmlab/mmclassification/pull/1258))
18+
- [Feature] Add mixmim backbone with checkpoints. ([#1224](https://github.com/open-mmlab/mmclassification/pull/1224))
19+
- [Feature] Add TinyViT for dev-1.x. ([#1042](https://github.com/open-mmlab/mmclassification/pull/1042))
20+
- [Feature] Add some scripts for development. ([#1257](https://github.com/open-mmlab/mmclassification/pull/1257))
21+
- [Feature] Support EVA. ([#1239](https://github.com/open-mmlab/mmclassification/pull/1239))
22+
- [Feature] Implementation of RevViT. ([#1127](https://github.com/open-mmlab/mmclassification/pull/1127))
23+
24+
### Improvements
25+
26+
- [Reproduce] Reproduce RepVGG Training Accuracy. ([#1264](https://github.com/open-mmlab/mmclassification/pull/1264))
27+
- [Enhance] Support ConvNeXt More Weights. ([#1240](https://github.com/open-mmlab/mmclassification/pull/1240))
28+
- [Reproduce] Update ConvNeXt config files. ([#1256](https://github.com/open-mmlab/mmclassification/pull/1256))
29+
- [CI] Update CI to test PyTorch 1.13.0. ([#1260](https://github.com/open-mmlab/mmclassification/pull/1260))
30+
- [Project] Add ACCV workshop 1st Solution. ([#1245](https://github.com/open-mmlab/mmclassification/pull/1245))
31+
- [Project] Add Example project. ([#1254](https://github.com/open-mmlab/mmclassification/pull/1254))
32+
33+
### Bug Fixes
34+
35+
- [Fix] Fix imports in transforms. ([#1255](https://github.com/open-mmlab/mmclassification/pull/1255))
36+
- [Fix] Fix CAM visualization. ([#1248](https://github.com/open-mmlab/mmclassification/pull/1248))
37+
- [Fix] Fix the requirements and lazy register mmcls models. ([#1275](https://github.com/open-mmlab/mmclassification/pull/1275))
38+
339
## v1.0.0rc4(06/12/2022)
440

541
### Highlights

mmcls/__init__.py

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

13-
mmengine_minimum_version = '0.2.0'
13+
mmengine_minimum_version = '0.4.0'
1414
mmengine_maximum_version = '1.0.0'
1515
mmengine_version = digit_version(mmengine.__version__)
1616

mmcls/version.py

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

3-
__version__ = '1.0.0rc4'
3+
__version__ = '1.0.0rc5'
44

55

66
def parse_version_info(version_str):

requirements/mminstall.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
mmcv>=2.0.0rc1,<=2.0.0
2-
mmengine>=0.2.0,<1.0.0
2+
mmengine>=0.4.0,<1.0.0

0 commit comments

Comments
 (0)