<div align="center">
<img src="resources/mmrazor-logo.png" width="600"/>
<div> </div>
<div align="center">
<b><font size="5">OpenMMLab website</font></b>
<sup>
<a href="https://openmmlab.com">
<i><font size="4">HOT</font></i>
</a>
</sup>
<b><font size="5">OpenMMLab platform</font></b>
<sup>
<a href="https://platform.openmmlab.com">
<i><font size="4">TRY IT OUT</font></i>
</a>
</sup>
</div>
<div> </div>
<!--算法库 Badges-->
[](https://pypi.org/project/mmrazor)
[](https://mmrazor.readthedocs.io/en/main/)
[](https://github.com/open-mmlab/mmrazor/actions)
[](https://codecov.io/gh/open-mmlab/mmrazor)
[](https://github.com/open-mmlab/mmrazor/blob/master/LICENSE)
[](https://github.com/open-mmlab/mmrazor/issues)
[](https://github.com/open-mmlab/mmrazor/issues)
<!--快速链接-->
<!--Note:请根据各算法库自身情况设置项目和链接-->
[📘Documentation](https://mmrazor.readthedocs.io/en/main/) |
[🛠️Installation](https://mmrazor.readthedocs.io/en/main/get_started/installation.html) |
[👀Model Zoo](https://mmrazor.readthedocs.io/en/main/get_started/model_zoo.html) |
[🤔Reporting Issues](https://github.com/open-mmlab/mmrazor/issues/new/choose)
</div>
<!--中/英 文档切换-->
<div align="center">
English | [简体中文](README_zh-CN.md)
<div align="center">
<a href="https://openmmlab.medium.com/" style="text-decoration:none;">
<img src="https://user-images.githubusercontent.com/25839884/218352562-cdded397-b0f3-4ca1-b8dd-a60df8dca75b.png" width="3%" alt="" /></a>
<img src="https://user-images.githubusercontent.com/25839884/218346358-56cc8e2f-a2b8-487f-9088-32480cceabcf.png" width="3%" alt="" />
<a href="https://discord.gg/raweFPmdzG" style="text-decoration:none;">
<img src="https://user-images.githubusercontent.com/25839884/218347213-c080267f-cbb6-443e-8532-8e1ed9a58ea9.png" width="3%" alt="" /></a>
<img src="https://user-images.githubusercontent.com/25839884/218346358-56cc8e2f-a2b8-487f-9088-32480cceabcf.png" width="3%" alt="" />
<a href="https://twitter.com/OpenMMLab" style="text-decoration:none;">
<img src="https://user-images.githubusercontent.com/25839884/218346637-d30c8a0f-3eba-4699-8131-512fb06d46db.png" width="3%" alt="" /></a>
<img src="https://user-images.githubusercontent.com/25839884/218346358-56cc8e2f-a2b8-487f-9088-32480cceabcf.png" width="3%" alt="" />
<a href="https://www.youtube.com/openmmlab" style="text-decoration:none;">
<img src="https://user-images.githubusercontent.com/25839884/218346691-ceb2116a-465a-40af-8424-9f30d2348ca9.png" width="3%" alt="" /></a>
</div>
</div>
## Introduction
MMRazor is a model compression toolkit for model slimming and AutoML, which includes 3 mainstream technologies:
- Neural Architecture Search (NAS)
- Pruning
- Knowledge Distillation (KD)
- Quantization
It is a part of the [OpenMMLab](https://openmmlab.com/) project.
Major features:
- **Compatibility**
MMRazor can be easily applied to various projects in OpenMMLab, due to the similar architecture design of OpenMMLab as well as the decoupling of slimming algorithms and vision tasks.
- **Flexibility**
Different algorithms, e.g., NAS, pruning and KD, can be incorporated in a plug-n-play manner to build a more powerful system.
- **Convenience**
With better modular design, developers can implement new model compression algorithms with only a few codes, or even by simply modifying config files.
About MMRazor's design and implementation, please refer to [tutorials](https://mmrazor.readthedocs.io/en/main/get_started/overview.html) for more details.
## Latest Updates
**The default branch is now `main` and the code on the branch has been upgraded to v1.0.0. The old `master` branch code now exists on the 0.x branch**
MMRazor v1.0.0 was released in 2023-4-24, Major updates from 1.0.0rc2 include:
1. MMRazor quantization is released.
2. Add a new pruning algorithm named GroupFisher.
3. Support distilling rtmdet with MMRazor.
To know more about the updates in MMRazor 1.0, please refer to [Changelog](https://mmrazor.readthedocs.io/en/main/notes/changelog.html) for more details!
## Benchmark and model zoo
Results and models are available in the [model zoo](https://mmrazor.readthedocs.io/en/main/get_started/model_zoo.html).
Supported algorithms:
<details open>
<summary>Neural Architecture Search</summary>
- [x] [DARTS(ICLR'2019)](configs/nas/mmcls/darts)
- [x] [DetNAS(NeurIPS'2019)](configs/nas/mmdet/detnas)
- [x] [SPOS(ECCV'2020)](configs/nas/mmcls/spos)
</details>
<details open>
<summary>Pruning</summary>
- [x] [AutoSlim(NeurIPS'2019)](/configs/pruning/mmcls/autoslim)
- [x] [L1-norm](/configs/pruning/mmcls/l1-norm)
- [x] [Group Fisher](/configs/pruning/base/group_fisher)
- [x] [DMCP](/configs/pruning/mmcls/dmcp)
</details>
<details open>
<summary>Knowledge Distillation</summary>
- [x] [CWD(ICCV'2021)](/configs/distill/mmdet/cwd)
- [x] [WSLD(ICLR'2021)](/configs/distill/mmcls/wsld)
- [x] [ABLoss](/configs/distill/mmcls/abloss)
- [x] [BYOT](/configs/distill/mmcls/byot)
- [x] [DAFL](/configs/distill/mmcls/dafl)
- [x] [DFAD](/configs/distill/mmcls/dfad)
- [x] [DKD](/configs/distill/mmcls/dkd)
- [x] [Factor Transfer](/configs/distill/mmcls/factor_transfer)
- [x] [FitNets](/configs/distill/mmcls/fitnets)
- [x] [KD](/configs/distill/mmcls/kd)
- [x] [OFD](/configs/distill/mmcls/ofd)
- [x] [RKD](/configs/distill/mmcls/rkd)
- [x] [ZSKT](/configs/distill/mmcls/zskt)
- [x] [FBKD](/configs/distill/mmdet/fbkd)
</details>
<details open>
<summary>Quantization</summary>
- [x] [PTQ](/configs/quantization/ptq/base)
- [x] [QAT](/configs/quantization/qat/base)
- [x] [LSQ](/configs/quantization/qat/lsq)
</details>
## Installation
MMRazor depends on [PyTorch](https://pytorch.org/), [MMCV](https://github.com/open-mmlab/mmcv) and [MMEngine](https://github.com/open-mmlab/mmengine).
Please refer to [installation.md](https://mmrazor.readthedocs.io/en/main/get_started/installation.html) for more detailed instruction.
## Getting Started
Please refer to [user guides](https://mmrazor.readthedocs.io/en/main/user_guides/index.html) for the basic usage of MMRazor. There are also [advanced guides](https://mmrazor.readthedocs.io/en/main/advanced_guides/index.html):
## Contributing
We appreciate all contributions to improve MMRazor.
Please refer to [CONTRUBUTING.md](https://mmrazor.readthedocs.io/en/main/notes/contribution_guide.html) for the contributing guideline.
## Acknowledgement
MMRazor 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 model compression methods.
## Citation
If you find this project useful in your research, please consider cite:
```BibTeX
@misc{2021mmrazor,
title={OpenMMLab Model Compression Toolbox and Benchmark},
author={MMRazor Contributors},
howpublished = {\url{https://github.com/open-mmlab/mmrazor}},
year={2021}
}
```
## License
This project is released under the [Apache 2.0 license](LICENSE).
## Projects in OpenMMLab
- [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.
- [MMDetection](https://github.com/open-mmlab/mmdetection): OpenMMLab detection toolbox and benchmark.
- [MMDetection3D](https://github.com/open-mmlab/mmdetection3d): OpenMMLab's next-generation platform for general 3D object detection.
- [MMRotate](https://github.com/open-mmlab/mmrotate): OpenMMLab rotated object detection toolbox and benchmark.
- [MMYOLO](https://github.com/open-mmlab/mmyolo): OpenMMLab YOLO series toolbox and benchmark.
- [MMSegmentation](https://github.com/open-mmlab/mmsegmentation): OpenMMLab semantic segmentation toolbox and benchmark.
- [MMOCR](https://github.com/open-mmlab/mmocr): OpenMMLab text detection, recognition, and understanding toolbox.
- [MMPose](https://github.com/open-mmlab/mmpose): OpenMMLab pose estimation toolbox and benchmark.
- [MMHuman3D](https://github.com/open-mmlab/mmhuman3d): OpenMMLab 3D human parametric model toolbox and benchmark.
- [MMSelfSup](https://github.com/open-mmlab/mmselfsup): OpenMMLab self-supervised learning toolbox and benchmark.
- [MMRazor](https://github.com/open-mmlab/mmrazor): OpenMMLab model compression toolbox and benchmark.
- [MMFewShot](https://github.com/open-mmlab/mmfewshot): OpenMMLab fewshot learning toolbox and benchmark.
- [MMAction2](https://github.com/open-mmlab/mmaction2): OpenMMLab's next-generation action understanding toolbox and benchmark.
- [MMTracking](https://github.com/open-mmlab/mmtracking): OpenMMLab video perception toolbox and benchmark.
- [MMFlow](https://github.com/open-mmlab/mmflow): OpenMMLab optical flow toolbox and benchmark.
- [MMEditing](https://github.com/open-mmlab/mmediting): OpenMMLab image and video editing toolbox.
- [MMGeneration](https://github.com/open-mmlab/mmgeneration): OpenMMLab image and video generative models toolbox.
- [MMDeploy](https://github.com/open-mmlab/mmdeploy): OpenMMLab model deployment framework.
Raw data
{
"_id": null,
"home_page": "https://github.com/open-mmlab/mmrazor",
"name": "mmrazor",
"maintainer": "",
"docs_url": null,
"requires_python": "",
"maintainer_email": "",
"keywords": "computer vision,model compression",
"author": "MMRazor Contributors",
"author_email": "openmmlab@gmail.com",
"download_url": "https://files.pythonhosted.org/packages/2f/37/0426034f420394b127055d34fb2e2a8de455ecfb1d7a632ff545b08d3eb1/mmrazor-1.0.0.tar.gz",
"platform": null,
"description": "<div align=\"center\">\n <img src=\"resources/mmrazor-logo.png\" width=\"600\"/>\n <div> </div>\n <div align=\"center\">\n <b><font size=\"5\">OpenMMLab website</font></b>\n <sup>\n <a href=\"https://openmmlab.com\">\n <i><font size=\"4\">HOT</font></i>\n </a>\n </sup>\n \n <b><font size=\"5\">OpenMMLab platform</font></b>\n <sup>\n <a href=\"https://platform.openmmlab.com\">\n <i><font size=\"4\">TRY IT OUT</font></i>\n </a>\n </sup>\n </div>\n <div> </div>\n\n<!--\u7b97\u6cd5\u5e93 Badges-->\n\n[](https://pypi.org/project/mmrazor)\n[](https://mmrazor.readthedocs.io/en/main/)\n[](https://github.com/open-mmlab/mmrazor/actions)\n[](https://codecov.io/gh/open-mmlab/mmrazor)\n[](https://github.com/open-mmlab/mmrazor/blob/master/LICENSE)\n[](https://github.com/open-mmlab/mmrazor/issues)\n[](https://github.com/open-mmlab/mmrazor/issues)\n\n<!--\u5feb\u901f\u94fe\u63a5-->\n\n<!--Note:\u8bf7\u6839\u636e\u5404\u7b97\u6cd5\u5e93\u81ea\u8eab\u60c5\u51b5\u8bbe\u7f6e\u9879\u76ee\u548c\u94fe\u63a5-->\n\n[\ud83d\udcd8Documentation](https://mmrazor.readthedocs.io/en/main/) |\n[\ud83d\udee0\ufe0fInstallation](https://mmrazor.readthedocs.io/en/main/get_started/installation.html) |\n[\ud83d\udc40Model Zoo](https://mmrazor.readthedocs.io/en/main/get_started/model_zoo.html) |\n[\ud83e\udd14Reporting Issues](https://github.com/open-mmlab/mmrazor/issues/new/choose)\n\n</div>\n\n<!--\u4e2d/\u82f1 \u6587\u6863\u5207\u6362-->\n\n<div align=\"center\">\n\nEnglish | [\u7b80\u4f53\u4e2d\u6587](README_zh-CN.md)\n\n<div align=\"center\">\n <a href=\"https://openmmlab.medium.com/\" style=\"text-decoration:none;\">\n <img src=\"https://user-images.githubusercontent.com/25839884/218352562-cdded397-b0f3-4ca1-b8dd-a60df8dca75b.png\" width=\"3%\" alt=\"\" /></a>\n <img src=\"https://user-images.githubusercontent.com/25839884/218346358-56cc8e2f-a2b8-487f-9088-32480cceabcf.png\" width=\"3%\" alt=\"\" />\n <a href=\"https://discord.gg/raweFPmdzG\" style=\"text-decoration:none;\">\n <img src=\"https://user-images.githubusercontent.com/25839884/218347213-c080267f-cbb6-443e-8532-8e1ed9a58ea9.png\" width=\"3%\" alt=\"\" /></a>\n <img src=\"https://user-images.githubusercontent.com/25839884/218346358-56cc8e2f-a2b8-487f-9088-32480cceabcf.png\" width=\"3%\" alt=\"\" />\n <a href=\"https://twitter.com/OpenMMLab\" style=\"text-decoration:none;\">\n <img src=\"https://user-images.githubusercontent.com/25839884/218346637-d30c8a0f-3eba-4699-8131-512fb06d46db.png\" width=\"3%\" alt=\"\" /></a>\n <img src=\"https://user-images.githubusercontent.com/25839884/218346358-56cc8e2f-a2b8-487f-9088-32480cceabcf.png\" width=\"3%\" alt=\"\" />\n <a href=\"https://www.youtube.com/openmmlab\" style=\"text-decoration:none;\">\n <img src=\"https://user-images.githubusercontent.com/25839884/218346691-ceb2116a-465a-40af-8424-9f30d2348ca9.png\" width=\"3%\" alt=\"\" /></a>\n</div>\n\n</div>\n\n## Introduction\n\nMMRazor is a model compression toolkit for model slimming and AutoML, which includes 3 mainstream technologies:\n\n- Neural Architecture Search (NAS)\n- Pruning\n- Knowledge Distillation (KD)\n- Quantization\n\nIt is a part of the [OpenMMLab](https://openmmlab.com/) project.\n\nMajor features:\n\n- **Compatibility**\n\n MMRazor can be easily applied to various projects in OpenMMLab, due to the similar architecture design of OpenMMLab as well as the decoupling of slimming algorithms and vision tasks.\n\n- **Flexibility**\n\n Different algorithms, e.g., NAS, pruning and KD, can be incorporated in a plug-n-play manner to build a more powerful system.\n\n- **Convenience**\n\n With better modular design, developers can implement new model compression algorithms with only a few codes, or even by simply modifying config files.\n\nAbout MMRazor's design and implementation, please refer to [tutorials](https://mmrazor.readthedocs.io/en/main/get_started/overview.html) for more details.\n\n## Latest Updates\n\n**The default branch is now `main` and the code on the branch has been upgraded to v1.0.0. The old `master` branch code now exists on the 0.x branch**\n\nMMRazor v1.0.0 was released in 2023-4-24, Major updates from 1.0.0rc2 include:\n\n1. MMRazor quantization is released.\n2. Add a new pruning algorithm named GroupFisher.\n3. Support distilling rtmdet with MMRazor.\n\nTo know more about the updates in MMRazor 1.0, please refer to [Changelog](https://mmrazor.readthedocs.io/en/main/notes/changelog.html) for more details!\n\n## Benchmark and model zoo\n\nResults and models are available in the [model zoo](https://mmrazor.readthedocs.io/en/main/get_started/model_zoo.html).\n\nSupported algorithms:\n\n<details open>\n<summary>Neural Architecture Search</summary>\n\n- [x] [DARTS(ICLR'2019)](configs/nas/mmcls/darts)\n\n- [x] [DetNAS(NeurIPS'2019)](configs/nas/mmdet/detnas)\n\n- [x] [SPOS(ECCV'2020)](configs/nas/mmcls/spos)\n\n</details>\n\n<details open>\n<summary>Pruning</summary>\n\n- [x] [AutoSlim(NeurIPS'2019)](/configs/pruning/mmcls/autoslim)\n\n- [x] [L1-norm](/configs/pruning/mmcls/l1-norm)\n\n- [x] [Group Fisher](/configs/pruning/base/group_fisher)\n\n- [x] [DMCP](/configs/pruning/mmcls/dmcp)\n\n</details>\n\n<details open>\n<summary>Knowledge Distillation</summary>\n\n- [x] [CWD(ICCV'2021)](/configs/distill/mmdet/cwd)\n\n- [x] [WSLD(ICLR'2021)](/configs/distill/mmcls/wsld)\n\n- [x] [ABLoss](/configs/distill/mmcls/abloss)\n\n- [x] [BYOT](/configs/distill/mmcls/byot)\n\n- [x] [DAFL](/configs/distill/mmcls/dafl)\n\n- [x] [DFAD](/configs/distill/mmcls/dfad)\n\n- [x] [DKD](/configs/distill/mmcls/dkd)\n\n- [x] [Factor Transfer](/configs/distill/mmcls/factor_transfer)\n\n- [x] [FitNets](/configs/distill/mmcls/fitnets)\n\n- [x] [KD](/configs/distill/mmcls/kd)\n\n- [x] [OFD](/configs/distill/mmcls/ofd)\n\n- [x] [RKD](/configs/distill/mmcls/rkd)\n\n- [x] [ZSKT](/configs/distill/mmcls/zskt)\n\n- [x] [FBKD](/configs/distill/mmdet/fbkd)\n\n</details>\n\n<details open>\n<summary>Quantization</summary>\n\n- [x] [PTQ](/configs/quantization/ptq/base)\n\n- [x] [QAT](/configs/quantization/qat/base)\n\n- [x] [LSQ](/configs/quantization/qat/lsq)\n\n</details>\n\n## Installation\n\nMMRazor depends on [PyTorch](https://pytorch.org/), [MMCV](https://github.com/open-mmlab/mmcv) and [MMEngine](https://github.com/open-mmlab/mmengine).\n\nPlease refer to [installation.md](https://mmrazor.readthedocs.io/en/main/get_started/installation.html) for more detailed instruction.\n\n## Getting Started\n\nPlease refer to [user guides](https://mmrazor.readthedocs.io/en/main/user_guides/index.html) for the basic usage of MMRazor. There are also [advanced guides](https://mmrazor.readthedocs.io/en/main/advanced_guides/index.html):\n\n## Contributing\n\nWe appreciate all contributions to improve MMRazor.\nPlease refer to [CONTRUBUTING.md](https://mmrazor.readthedocs.io/en/main/notes/contribution_guide.html) for the contributing guideline.\n\n## Acknowledgement\n\nMMRazor 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.\nWe 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 model compression methods.\n\n## Citation\n\nIf you find this project useful in your research, please consider cite:\n\n```BibTeX\n@misc{2021mmrazor,\n title={OpenMMLab Model Compression Toolbox and Benchmark},\n author={MMRazor Contributors},\n howpublished = {\\url{https://github.com/open-mmlab/mmrazor}},\n year={2021}\n}\n```\n\n## License\n\nThis project is released under the [Apache 2.0 license](LICENSE).\n\n## Projects in OpenMMLab\n\n- [MMCV](https://github.com/open-mmlab/mmcv): OpenMMLab foundational library for computer vision.\n- [MIM](https://github.com/open-mmlab/mim): MIM installs OpenMMLab packages.\n- [MMClassification](https://github.com/open-mmlab/mmclassification): OpenMMLab image classification toolbox and benchmark.\n- [MMDetection](https://github.com/open-mmlab/mmdetection): OpenMMLab detection toolbox and benchmark.\n- [MMDetection3D](https://github.com/open-mmlab/mmdetection3d): OpenMMLab's next-generation platform for general 3D object detection.\n- [MMRotate](https://github.com/open-mmlab/mmrotate): OpenMMLab rotated object detection toolbox and benchmark.\n- [MMYOLO](https://github.com/open-mmlab/mmyolo): OpenMMLab YOLO series toolbox and benchmark.\n- [MMSegmentation](https://github.com/open-mmlab/mmsegmentation): OpenMMLab semantic segmentation toolbox and benchmark.\n- [MMOCR](https://github.com/open-mmlab/mmocr): OpenMMLab text detection, recognition, and understanding toolbox.\n- [MMPose](https://github.com/open-mmlab/mmpose): OpenMMLab pose estimation toolbox and benchmark.\n- [MMHuman3D](https://github.com/open-mmlab/mmhuman3d): OpenMMLab 3D human parametric model toolbox and benchmark.\n- [MMSelfSup](https://github.com/open-mmlab/mmselfsup): OpenMMLab self-supervised learning toolbox and benchmark.\n- [MMRazor](https://github.com/open-mmlab/mmrazor): OpenMMLab model compression toolbox and benchmark.\n- [MMFewShot](https://github.com/open-mmlab/mmfewshot): OpenMMLab fewshot learning toolbox and benchmark.\n- [MMAction2](https://github.com/open-mmlab/mmaction2): OpenMMLab's next-generation action understanding toolbox and benchmark.\n- [MMTracking](https://github.com/open-mmlab/mmtracking): OpenMMLab video perception toolbox and benchmark.\n- [MMFlow](https://github.com/open-mmlab/mmflow): OpenMMLab optical flow toolbox and benchmark.\n- [MMEditing](https://github.com/open-mmlab/mmediting): OpenMMLab image and video editing toolbox.\n- [MMGeneration](https://github.com/open-mmlab/mmgeneration): OpenMMLab image and video generative models toolbox.\n- [MMDeploy](https://github.com/open-mmlab/mmdeploy): OpenMMLab model deployment framework.\n\n\n",
"bugtrack_url": null,
"license": "Apache License 2.0",
"summary": "OpenMMLab Model Compression Toolbox and Benchmark",
"version": "1.0.0",
"split_keywords": [
"computer vision",
"model compression"
],
"urls": [
{
"comment_text": "",
"digests": {
"blake2b_256": "8d782a1db132ba707c9dc0843a3bee25065743f4ab4867315ddc43bd59128156",
"md5": "a863b554086338d46bb6f2e9ed49c28c",
"sha256": "d542a78697fa7a4ec6a5a052b232131ba5e2d150afff11db52709d2054508eaa"
},
"downloads": -1,
"filename": "mmrazor-1.0.0-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "a863b554086338d46bb6f2e9ed49c28c",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": null,
"size": 732707,
"upload_time": "2023-04-24T09:53:14",
"upload_time_iso_8601": "2023-04-24T09:53:14.314730Z",
"url": "https://files.pythonhosted.org/packages/8d/78/2a1db132ba707c9dc0843a3bee25065743f4ab4867315ddc43bd59128156/mmrazor-1.0.0-py2.py3-none-any.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "2f370426034f420394b127055d34fb2e2a8de455ecfb1d7a632ff545b08d3eb1",
"md5": "27dd93bab5565d5df371c90ea4b2923f",
"sha256": "c09732eb92011eded34fa63b8def9739702bcafeb329ac32eac2ad9bd7ad9500"
},
"downloads": -1,
"filename": "mmrazor-1.0.0.tar.gz",
"has_sig": false,
"md5_digest": "27dd93bab5565d5df371c90ea4b2923f",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 388174,
"upload_time": "2023-04-24T09:53:16",
"upload_time_iso_8601": "2023-04-24T09:53:16.089506Z",
"url": "https://files.pythonhosted.org/packages/2f/37/0426034f420394b127055d34fb2e2a8de455ecfb1d7a632ff545b08d3eb1/mmrazor-1.0.0.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"upload_time": "2023-04-24 09:53:16",
"github": true,
"gitlab": false,
"bitbucket": false,
"github_user": "open-mmlab",
"github_project": "mmrazor",
"travis_ci": false,
"coveralls": false,
"github_actions": true,
"circle": true,
"requirements": [],
"lcname": "mmrazor"
}