Skip to content

Commit a482409

Browse files
authored
Bump to v0.7.0 (#258)
* Bump to v0.7.0 * update date in readme.md
1 parent c44b7a4 commit a482409

File tree

8 files changed

+45
-16
lines changed

8 files changed

+45
-16
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ This project is released under the [Apache 2.0 license](LICENSE).
4848

4949
## Changelog
5050

51-
v0.6.0 was released in 30/07/2021.
51+
v0.7.0 was released in 03/09/2021.
5252
Please refer to [changelog.md](docs/changelog.md) for details and release history.
5353

5454
## Benchmark and model zoo

README_zh-CN.md

Lines changed: 12 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ MMTracking是一款基于PyTorch的视频目标感知开源工具箱,是[OpenM
4747

4848
## 更新记录
4949

50-
v0.6.0版本已于2021年7月30日发布,可通过查阅[更新日志](/docs/changelog.md)了解更多细节以及发布历史。
50+
v0.7.0版本已于2021年9月3日发布,可通过查阅[更新日志](/docs/changelog.md)了解更多细节以及发布历史。
5151

5252
## 基准测试与模型库
5353

@@ -58,6 +58,7 @@ v0.6.0版本已于2021年7月30日发布,可通过查阅[更新日志](/docs/c
5858
- [x] [DFF](configs/vid/dff) (CVPR 2017)
5959
- [x] [FGFA](configs/vid/fgfa) (ICCV 2017)
6060
- [x] [SELSA](configs/vid/selsa) (ICCV 2019)
61+
- [x] [Temporal RoI Align](configs/vid/temporal_roi_align) (AAAI 2021)
6162

6263
支持的多目标跟踪算法:
6364

@@ -72,9 +73,17 @@ v0.6.0版本已于2021年7月30日发布,可通过查阅[更新日志](/docs/c
7273

7374
请参考[安装指南](docs/install.md)进行安装。
7475

75-
## 教程
76+
## 开始使用MMTracking
7677

77-
请参考[数据集](docs/dataset.md)[快速开始](docs/quick_run.md)了解MMTracking的基本使用。MMTracking也提供了更详细的[教程](docs/tutorials/)
78+
请参考[数据集](docs/dataset.md)[快速开始](docs/quick_run.md)了解MMTracking的基本使用。MMTracking也提供了更详细的[教程](docs/tutorials/),比如[了解配置文件](docs/tutorials/config.md), [一个有关视频目标检测器配置文件的详细解释](docs/tutorials/config_vid.md), [一个有关多目标跟踪器配置文件的详细解释](docs/tutorials/config_mot.md), [一个有关单目标跟踪器配置文件的详细解释](docs/tutorials/config_sot.md), [自定义数据集](docs/tutorials/customize_dataset.md), [自定义数据预处理流程]](docs/tutorials/customize_data_pipeline.md), [自定义视频目标检测器](docs/tutorials/customize_vid_model.md), [自定义多目标跟踪器](docs/tutorials/customize_mot_model.md), [自定义单目标跟踪器](docs/tutorials/customize_sot_model.md), [自定义训练配置](docs/tutorials/customize_runtime.md) and [有用的工具和脚本](docs/useful_tools_scripts.md).
79+
80+
## 参与贡献
81+
82+
我们非常欢迎用户对于MMTracking做出的任何贡献,可以参考[贡献指南](https://github.com/open-mmlab/mmcv/blob/master/CONTRIBUTING.md)文件了解更多细节。
83+
84+
## 致谢
85+
86+
MMTracking是一款开源项目,我们欢迎任何贡献和反馈。我们希望该工具箱和基准测试可以为社区提供灵活的代码工具,供用户复现现有算法并开发自己新的视频目标感知方法。
7887

7988
## 引用
8089

@@ -89,14 +98,6 @@ v0.6.0版本已于2021年7月30日发布,可通过查阅[更新日志](/docs/c
8998
}
9099
```
91100

92-
## 参与贡献
93-
94-
我们非常欢迎用户对于MMTracking做出的任何贡献,可以参考[贡献指南]([/.github/CONTRIBUTING.md](https://github.com/open-mmlab/mmcv/blob/master/CONTRIBUTING.md))文件了解更多细节。
95-
96-
## 致谢
97-
98-
MMTracking是一款开源项目,我们欢迎任何贡献和反馈。我们希望该工具箱和基准测试可以为社区提供灵活的代码工具,供用户复现现有算法并开发自己新的视频目标感知方法。
99-
100101
## OpenMMLab 的其他项目
101102

102103
- [MMCV](https://github.com/open-mmlab/mmcv):OpenMMLab计算机视觉基础库

configs/vid/temporal_roi_align/metafile.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,4 +45,4 @@ Models:
4545
Dataset: ILSVRC
4646
Metrics:
4747
box AP@0.5: 84.1
48-
Weights: https://download.openmmlab.com/mmtracking/vid/temporal_roi_align/selsa_troialign_faster_rcnn_r101_dc5_7e_imagenetvid/selsa_troialign_faster_rcnn_r101_dc5_7e_imagenetvid_20210822_111621-22cb96b9.pth
48+
Weights: https://download.openmmlab.com/mmtracking/vid/temporal_roi_align/selsa_troialign_faster_rcnn_x101_dc5_7e_imagenetvid/selsa_troialign_faster_rcnn_x101_dc5_7e_imagenetvid_20210822_164036-4471ac42.pth

docs/changelog.md

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

3+
### v0.7.0 (03/09/2021)
4+
5+
#### Highlights
6+
7+
- Release code of AAAI 2021 paper 'Temporal ROI Align for Video Object Recognition' ([#247](https://github.com/open-mmlab/mmtracking/pull/247))
8+
- Refactor English documentations ([#243](https://github.com/open-mmlab/mmtracking/pull/243))
9+
- Add Chinese documentations ([#248](https://github.com/open-mmlab/mmtracking/pull/248)), ([#250](https://github.com/open-mmlab/mmtracking/pull/250))
10+
11+
#### New Features
12+
13+
- Support fp16 training and testing ([#230](https://github.com/open-mmlab/mmtracking/pull/230))
14+
- Release model using ResNeXt-101 as backbone for all VID methods ([#254](https://github.com/open-mmlab/mmtracking/pull/254))
15+
- Support the results of Tracktor on MOT15, MOT16 and MOT20 datasets ([#217](https://github.com/open-mmlab/mmtracking/pull/217))
16+
- Support visualization for single gpu test ([#216](https://github.com/open-mmlab/mmtracking/pull/216))
17+
18+
#### Bug Fixes
19+
20+
- Fix a bug in MOTP evaluation ([#235](https://github.com/open-mmlab/mmtracking/pull/235))
21+
- Fix two bugs in reid training and testing ([#249](https://github.com/open-mmlab/mmtracking/pull/249))
22+
23+
#### Improvements
24+
25+
- Refactor anchor in SiameseRPN++ ([#229](https://github.com/open-mmlab/mmtracking/pull/229))
26+
- Unify model initialization ([#235](https://github.com/open-mmlab/mmtracking/pull/235))
27+
- Refactor unittest ([#231](https://github.com/open-mmlab/mmtracking/pull/231))
28+
329
### v0.6.0 (30/07/2021)
430

531
#### Highlights

docs/install.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ The compatible MMTracking, MMCV, and MMDetection versions are as below. Please i
1414
|:-------------------:|:------------------------:|:-----------------------------:|
1515
| master | mmcv-full>=1.3.8, <1.4.0 | MMDetection>=2.14.0 |
1616
| 0.6.0 | mmcv-full>=1.3.8, <1.4.0 | MMDetection>=2.14.0 |
17+
| 0.7.0 | mmcv-full>=1.3.8, <1.4.0 | MMDetection>=2.14.0 |
1718

1819
## Installation
1920

docs_zh-CN/install.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@
1414
|:-------------------:|:------------------------:|:-----------------------------:|
1515
| master | mmcv-full>=1.3.8, <1.4.0 | MMDetection>=2.14.0 |
1616
| 0.6.0 | mmcv-full>=1.3.8, <1.4.0 | MMDetection>=2.14.0 |
17+
| 0.7.0 | mmcv-full>=1.3.8, <1.4.0 | MMDetection>=2.14.0 |
1718

1819
## 安装
1920

mmtrack/__init__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -60,14 +60,14 @@ def digit_version(version_str: str, length: int = 4):
6060

6161
assert (mmcv_min_version <= mmcv_version < mmcv_max_version), \
6262
f'MMCV=={mmcv.__version__} is used but incompatible. ' \
63-
f'Please install mmcv>={mmcv_min_version}, <{mmcv_max_version}.'
63+
f'Please install mmcv>={MMCV_MIN}, <{MMCV_MAX}.'
6464

6565
mmdet_min_version = digit_version(MMDET_MIN)
6666
mmdet_version = digit_version(mmdet.__version__)
6767

6868

6969
assert (mmdet_min_version <= mmdet_version), \
7070
f'MMDet=={mmdet.__version__} is used but incompatible. ' \
71-
f'Please install mmdet>={mmdet_min_version}.'
71+
f'Please install mmdet>={MMDET_MIN}.'
7272

7373
__all__ = ['__version__', 'version_info', 'digit_version']

mmtrack/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.6.0'
3+
__version__ = '0.7.0'
44

55

66
def parse_version_info(version_str):

0 commit comments

Comments
 (0)