OpenMMLab Pre-training Toolbox and Benchmark
 
 
 
 
Go to file
mzr1996 0979e78573 Rename the package name to `mmpretrain`. 2023-02-17 15:20:55 +08:00
.circleci [Improve] Update registries of mmcls. (#1306) 2023-01-11 15:20:51 +08:00
.dev_scripts Rename the package name to `mmpretrain`. 2023-02-17 15:20:55 +08:00
.github Bump version to v1.0.0rc3. (#1211) 2022-11-21 18:21:48 +08:00
configs Rename the package name to `mmpretrain`. 2023-02-17 15:20:55 +08:00
demo Rename the package name to `mmpretrain`. 2023-02-17 15:20:55 +08:00
docker Bump version to v1.0.0rc4. (#1243) 2022-12-06 18:00:01 +08:00
docs Rename the package name to `mmpretrain`. 2023-02-17 15:20:55 +08:00
mmpretrain Rename the package name to `mmpretrain`. 2023-02-17 15:20:55 +08:00
projects Rename the package name to `mmpretrain`. 2023-02-17 15:20:55 +08:00
requirements Rename the package name to `mmpretrain`. 2023-02-17 15:20:55 +08:00
resources Add README 2020-07-12 00:06:54 +08:00
tests Rename the package name to `mmpretrain`. 2023-02-17 15:20:55 +08:00
tools Rename the package name to `mmpretrain`. 2023-02-17 15:20:55 +08:00
.coveragerc Mazerun/base classifier 2022-07-18 11:11:13 +08:00
.gitattributes Add .gitattributes 2021-12-07 11:55:58 +08:00
.gitignore Rename the package name to `mmpretrain`. 2023-02-17 15:20:55 +08:00
.pre-commit-config.yaml [Feature] Add `ImageClassificationInferencer`. (#1261) 2023-02-08 14:30:12 +08:00
.readthedocs.yml Support output pdf version readthedocs document. (#382) 2021-07-31 14:11:50 +08:00
CITATION.cff [Docs] Add `CITATION.cff` (#428) 2021-09-01 17:07:27 +08:00
CONTRIBUTING.md Bump to v1.0.0rc0 (#1007) 2022-08-31 23:57:51 +08:00
LICENSE [Docs] Add Copyright information. (#413) 2021-08-17 19:52:42 +08:00
MANIFEST.in Rename the package name to `mmpretrain`. 2023-02-17 15:20:55 +08:00
README.md Bump version to v1.0.0rc5. (#1286) 2022-12-30 17:32:04 +08:00
README_zh-CN.md Bump version to v1.0.0rc5. (#1286) 2022-12-30 17:32:04 +08:00
model-index.yml [Feature] Support XCiT Backbone. (#1305) 2023-02-15 10:32:35 +08:00
requirements.txt workflow: modify build, add deploy (#61) 2020-10-10 22:15:50 +08:00
setup.cfg Rename the package name to `mmpretrain`. 2023-02-17 15:20:55 +08:00
setup.py Rename the package name to `mmpretrain`. 2023-02-17 15:20:55 +08:00

README.md

Introduction

English | 简体中文

MMClassification is an open source image classification toolbox based on PyTorch. It is a part of the OpenMMLab project.

The 1.x branch works with PyTorch 1.6+.

Major features

  • Various backbones and pretrained models
  • Bag of training tricks
  • Large-scale training configs
  • High efficiency and extensibility
  • Powerful toolkits

What's new

v1.0.0rc5 was released in 30/12/2022

  • Support EVA, RevViT, EfficientnetV2, CLIP, TinyViT and MixMIM backbones.
  • Reproduce the training accuracy of ConvNeXt and RepVGG.
  • Support multi-task training and testing. See #1229 for more details.
  • Support Test-time Augmentation. See #1161 for more details.

v1.0.0rc4 was released in 06/12/2022.

  • Upgrade API to get pre-defined models of MMClassification. See #1236 for more details.
  • Refactor BEiT backbone and support v1/v2 inference. See #1144.

v1.0.0rc3 was released in 21/11/2022.

  • Add Switch Recipe Hook, Now we can modify training pipeline, mixup and loss settings during training, see #1101.
  • Add TIMM and HuggingFace wrappers. Now you can train/use models in TIMM/HuggingFace directly, see #1102.
  • Support retrieval tasks, see #1055.
  • Reproduce mobileone training accuracy. See #1191

This release introduced a brand new and flexible training & test engine, but it's still in progress. Welcome to try according to the documentation.

And there are some BC-breaking changes. Please check the migration tutorial.

The release candidate will last until the end of 2022, and during the release candidate, we will develop on the 1.x branch. And we will still maintain 0.x version still at least the end of 2023.

Please refer to changelog.md for more details and other release history.

Installation

Below are quick steps for installation:

conda create -n open-mmlab python=3.8 pytorch==1.10.1 torchvision==0.11.2 cudatoolkit=11.3 -c pytorch -y
conda activate open-mmlab
pip install openmim
git clone -b 1.x https://github.com/open-mmlab/mmclassification.git
cd mmclassification
mim install -e .

Please refer to install.md for more detailed installation and dataset preparation.

User Guides

We provided a series of tutorials about the basic usage of MMClassification for new users:

Model zoo

Results and models are available in the model zoo.

Supported backbones

Contributing

We appreciate all contributions to improve MMClassification. Please refer to CONTRUBUTING.md for the contributing guideline.

Acknowledgement

MMClassification is an open source project that is contributed by researchers and engineers from various colleges and companies. We appreciate all the contributors who implement their methods or add new features, as well as users who give valuable feedbacks. We wish that the toolbox and benchmark could serve the growing research community by providing a flexible toolkit to reimplement existing methods and develop their own new classifiers.

Citation

If you find this project useful in your research, please consider cite:

@misc{2020mmclassification,
    title={OpenMMLab's Image Classification Toolbox and Benchmark},
    author={MMClassification Contributors},
    howpublished = {\url{https://github.com/open-mmlab/mmclassification}},
    year={2020}
}

License

This project is released under the Apache 2.0 license.

Projects in OpenMMLab

  • MMEngine: OpenMMLab foundational library for training deep learning models.
  • MMCV: OpenMMLab foundational library for computer vision.
  • MIM: MIM installs OpenMMLab packages.
  • MMEval: A unified evaluation library for multiple machine learning libraries.
  • MMClassification: OpenMMLab image classification toolbox and benchmark.
  • MMDetection: OpenMMLab detection toolbox and benchmark.
  • MMDetection3D: OpenMMLab's next-generation platform for general 3D object detection.
  • MMRotate: OpenMMLab rotated object detection toolbox and benchmark.
  • MMYOLO: OpenMMLab YOLO series toolbox and benchmark.
  • MMSegmentation: OpenMMLab semantic segmentation toolbox and benchmark.
  • MMOCR: OpenMMLab text detection, recognition, and understanding toolbox.
  • MMPose: OpenMMLab pose estimation toolbox and benchmark.
  • MMHuman3D: OpenMMLab 3D human parametric model toolbox and benchmark.
  • MMSelfSup: OpenMMLab self-supervised learning toolbox and benchmark.
  • MMRazor: OpenMMLab model compression toolbox and benchmark.
  • MMFewShot: OpenMMLab fewshot learning toolbox and benchmark.
  • MMAction2: OpenMMLab's next-generation action understanding toolbox and benchmark.
  • MMTracking: OpenMMLab video perception toolbox and benchmark.
  • MMFlow: OpenMMLab optical flow toolbox and benchmark.
  • MMEditing: OpenMMLab image and video editing toolbox.
  • MMGeneration: OpenMMLab image and video generative models toolbox.
  • MMDeploy: OpenMMLab model deployment framework.