From c86e1b9f3127c5a1f844854537eddaf37e112591 Mon Sep 17 00:00:00 2001 From: Tao Gong Date: Tue, 11 Oct 2022 17:00:05 +0800 Subject: [PATCH] Bump to v1.0.0rc1 (#735) * bump to 1.0.0rc1 * Update mminstall.txt --- README.md | 20 ++++++++++---------- docs/en/get_started.md | 1 + docs/en/notes/changelog.md | 10 ++++++++++ mmtrack/__init__.py | 2 +- mmtrack/version.py | 2 +- requirements/mminstall.txt | 6 +++--- 6 files changed, 26 insertions(+), 15 deletions(-) diff --git a/README.md b/README.md index a26a55210..807016ef9 100644 --- a/README.md +++ b/README.md @@ -20,15 +20,15 @@ [![PyPI - Python Version](https://img.shields.io/pypi/pyversions/mmtrack)](https://pypi.org/project/mmtrack/) [![PyPI](https://img.shields.io/pypi/v/mmtrack)](https://pypi.org/project/mmtrack) -[![docs](https://img.shields.io/badge/docs-latest-blue)](https://mmtracking.readthedocs.io/en/latest/) +[![docs](https://img.shields.io/badge/docs-1.x-blue)](https://mmtracking.readthedocs.io/en/1.x/) [![badge](https://github.com/open-mmlab/mmtracking/workflows/build/badge.svg)](https://github.com/open-mmlab/mmtracking/actions) [![codecov](https://codecov.io/gh/open-mmlab/mmtracking/branch/master/graph/badge.svg)](https://codecov.io/gh/open-mmlab/mmtracking) [![license](https://img.shields.io/github/license/open-mmlab/mmtracking.svg)](https://github.com/open-mmlab/mmtracking/blob/master/LICENSE) -[📘Documentation](https://mmtracking.readthedocs.io/) | -[🛠️Installation](https://mmtracking.readthedocs.io/en/latest/install.html) | -[👀Model Zoo](https://mmtracking.readthedocs.io/en/latest/model_zoo.html) | -[🆕Update News](https://mmtracking.readthedocs.io/en/latest/changelog.html) | +[📘Documentation](https://mmtracking.readthedocs.io/en/1.x/) | +[🛠️Installation](https://mmtracking.readthedocs.io/en/1.x/get_started.html) | +[👀Model Zoo](https://mmtracking.readthedocs.io/en/1.x/model_zoo.html) | +[🆕Update News](https://mmtracking.readthedocs.io/en/1.x/notes/changelog.html) | [🤔Reporting Issues](https://github.com/open-mmlab/mmtracking/issues/new/choose) @@ -61,7 +61,7 @@ The master branch works with **PyTorch1.6+**. - **Simple, Fast and Strong** - **Simple**: MMTracking interacts with other OpenMMLab projects. It is built upon [MMDetection](https://github.com/open-mmlab/mmdetection) that we can capitalize any detector only through modifying the configs. + **Simple**: MMTracking interacts with other OpenMMLab projects. It is built upon [MMDetection](https://github.com/open-mmlab/mmdetection/tree/3.x) that we can capitalize any detector only through modifying the configs. **Fast**: All operations run on GPUs. The training and inference speeds are faster than or comparable to other implementations. @@ -69,10 +69,10 @@ The master branch works with **PyTorch1.6+**. ## What's New -Release [Mask2Former](configs/vis/mask2former) and [PrDiMP](configs/sot/prdimp) pretrained models. +Release [Mask2Former](configs/vis/mask2former), [PrDiMP](configs/sot/prdimp) and [StrongSORT++](configs/mot/strongsort)) pretrained models. -v1.0.0rc0 was released in 31/08/2022. -Please refer to [changelog.md](docs/en/changelog.md) for details and release history. +v1.0.0rc1 was released in 10/10/2022. +Please refer to [changelog.md](docs/en/notes/changelog.md) for details and release history. ## Get Started @@ -111,7 +111,6 @@ Supported Methods - [x] [QDTrack](configs/mot/qdtrack) (CVPR 2021) - [x] [ByteTrack](configs/mot/bytetrack) (ECCV 2022) - [x] [StrongSORT](configs/mot/strongsort) (arxiv 2022) -- [ ] [OC-SORT](https://arxiv.org/abs/2203.14360) (arXiv 2022) (WIP) Supported Datasets @@ -179,6 +178,7 @@ This project is released under the [Apache 2.0 license](LICENSE). ## Projects in OpenMMLab +- [MMEngine](https://github.com/open-mmlab/mmengine): OpenMMLab foundational library for training deep learning models. - [MMCV](https://github.com/open-mmlab/mmcv): OpenMMLab foundational library for computer vision. - [MIM](https://github.com/open-mmlab/mim): MIM installs OpenMMLab packages. - [MMClassification](https://github.com/open-mmlab/mmclassification): OpenMMLab image classification toolbox and benchmark. diff --git a/docs/en/get_started.md b/docs/en/get_started.md index 1f9999f9c..9e0d256fa 100644 --- a/docs/en/get_started.md +++ b/docs/en/get_started.md @@ -14,6 +14,7 @@ The compatible MMTracking, MMEngine, MMCV, and MMDetection versions are as below | MMTracking version | MMEngine version | MMCV version | MMDetection version | | :----------------: | :--------------: | :--------------------: | :---------------------: | | 1.x | mmengine>=0.1.0 | mmcv>=2.0.0rc1,\<2.0.0 | mmdet>=3.0.0rc0,\<3.0.0 | +| 1.0.0rc1 | mmengine>=0.1.0 | mmcv>=2.0.0rc1,\<2.0.0 | mmdet>=3.0.0rc0,\<3.0.0 | ## Installation diff --git a/docs/en/notes/changelog.md b/docs/en/notes/changelog.md index 7205207d6..af5558e4f 100644 --- a/docs/en/notes/changelog.md +++ b/docs/en/notes/changelog.md @@ -1,5 +1,15 @@ ## Changelog +### v1.0.0rc1 (10/10/2022) + +MMTracking 1.0.0rc1 is the 2-nd version of MMTracking 1.x, a part of the OpenMMLab 2.0 projects. + +Built upon the new [training engine](https://github.com/open-mmlab/mmengine), MMTracking 1.x unifies the interfaces of datasets, models, evaluation, and visualization. + +And there are some BC-breaking changes. Please check [the migration tutorial](https://mmtracking.readthedocs.io/en/1.x/migration.html) for more details. + +We also support more methods in MMTracking 1.x, such as StrongSORT for MOT, Mask2Former for VIS, PrDiMP for SOT. + ### v0.13.0 (29/04/2022) #### Highlights diff --git a/mmtrack/__init__.py b/mmtrack/__init__.py index 45dab07c1..b81baa3cf 100644 --- a/mmtrack/__init__.py +++ b/mmtrack/__init__.py @@ -7,7 +7,7 @@ from .version import __version__, version_info -MMCV_MIN = '2.0.0rc0' +MMCV_MIN = '2.0.0rc1' MMCV_MAX = '2.0.0' MMDET_MIN = '3.0.0rc0' diff --git a/mmtrack/version.py b/mmtrack/version.py index 6ee77798f..840dca669 100644 --- a/mmtrack/version.py +++ b/mmtrack/version.py @@ -1,6 +1,6 @@ # Copyright (c) Open-MMLab. All rights reserved. -__version__ = '1.0.0rc0' +__version__ = '1.0.0rc1' def parse_version_info(version_str): diff --git a/requirements/mminstall.txt b/requirements/mminstall.txt index f91c65a43..0a9d68e7b 100644 --- a/requirements/mminstall.txt +++ b/requirements/mminstall.txt @@ -1,4 +1,4 @@ -mmcls>=1.0.0rc0,<1.0.0 -mmcv>=2.0.0rc1,<2.0.0 -mmdet>=3.0.0rc0,<3.0.0 +mmcls>=1.0.0rc0 +mmcv>=2.0.0rc1 +mmdet>=3.0.0rc0 mmengine>=0.1.0