Skip to content

Commit

Permalink
Bump to v1.0.0rc1 (#735)
Browse files Browse the repository at this point in the history
* bump to 1.0.0rc1

* Update mminstall.txt
  • Loading branch information
GT9505 committed Oct 11, 2022
1 parent 717c5cc commit c86e1b9
Show file tree
Hide file tree
Showing 6 changed files with 26 additions and 15 deletions.
20 changes: 10 additions & 10 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)

</div>
Expand Down Expand Up @@ -61,18 +61,18 @@ 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.

**Strong**: We reproduce state-of-the-art models and some of them even outperform the official implementations.

## 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

Expand Down Expand Up @@ -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

Expand Down Expand Up @@ -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.
Expand Down
1 change: 1 addition & 0 deletions docs/en/get_started.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
10 changes: 10 additions & 0 deletions docs/en/notes/changelog.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion mmtrack/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -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'
Expand Down
2 changes: 1 addition & 1 deletion mmtrack/version.py
Original file line number Diff line number Diff line change
@@ -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):
Expand Down
6 changes: 3 additions & 3 deletions requirements/mminstall.txt
Original file line number Diff line number Diff line change
@@ -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

0 comments on commit c86e1b9

Please sign in to comment.