- Notifications
You must be signed in to change notification settings - Fork1.1k
OpenMMLab Multimodal Advanced, Generative, and Intelligent Creation Toolbox. Unlock the magic 🪄: Generative-AI (AIGC), easy-to-use APIs, awsome model zoo, diffusion models, for text-to-image generation, image/video restoration/enhancement, etc.
License
open-mmlab/mmagic
Folders and files
| Name | Name | Last commit message | Last commit date | |
|---|---|---|---|---|
Repository files navigation

📘Documentation |🛠️Installation |📊Model Zoo |🆕Update News |🚀Ongoing Projects |🤔Reporting Issues
English |简体中文
New releaseMMagic v1.2.0 [18/12/2023]:
- An advanced and powerful inpainting algorithm named PowerPaint is released in our repository.Click to View
We are excited to announce the release of MMagic v1.0.0 that inherits fromMMEditing andMMGeneration.
After iterative updates with OpenMMLab 2.0 framework and merged with MMGeneration, MMEditing has become a powerful tool that supports low-level algorithms based on both GAN and CNN. Today, MMEditing embraces Generative AI and transforms into a more advanced and comprehensive AIGC toolkit:MMagic (MultimodalAdvanced,Generative, andIntelligentCreation). MMagic will provide more agile and flexible experimental support for researchers and AIGC enthusiasts, and help you on your AIGC exploration journey.
We highlight the following new features.
1. New Models
We support 11 new models in 4 new tasks.
- Text2Image / Diffusion
- ControlNet
- DreamBooth
- Stable Diffusion
- Disco Diffusion
- GLIDE
- Guided Diffusion
- 3D-aware Generation
- EG3D
- Image Restoration
- NAFNet
- Restormer
- SwinIR
- Image Colorization
- InstColorization
2. Magic Diffusion Model
For the Diffusion Model, we provide the following "magic" :
- Support image generation based on Stable Diffusion and Disco Diffusion.
- Support Finetune methods such as Dreambooth and DreamBooth LoRA.
- Support controllability in text-to-image generation using ControlNet.
- Support acceleration and optimization strategies based on xFormers to improve training and inference efficiency.
- Support video generation based on MultiFrame Render.
- Support calling basic models and sampling strategies through DiffuserWrapper.
3. Upgraded Framework
By using MMEngine and MMCV of OpenMMLab 2.0 framework, MMagic has upgraded in the following new features:
- Refactor DataSample to support the combination and splitting of batch dimensions.
- Refactor DataPreprocessor and unify the data format for various tasks during training and inference.
- Refactor MultiValLoop and MultiTestLoop, supporting the evaluation of both generation-type metrics (e.g. FID) and reconstruction-type metrics (e.g. SSIM), and supporting the evaluation of multiple datasets at once.
- Support visualization on local files or using tensorboard and wandb.
- Support for 33+ algorithms accelerated by Pytorch 2.0.
MMagic has supported all the tasks, models, metrics, and losses inMMEditing andMMGeneration and unifies interfaces of all components based onMMEngine 😍.
Please refer tochangelog.md for details and release history.
Please refer tomigration documents to migrate fromold version MMEditing 0.x to new version MMagic 1.x .
- 📖 Introduction
- 🙌 Contributing
- 🛠️ Installation
- 📊 Model Zoo
- 🤝 Acknowledgement
- 🖊️ Citation
- 🎫 License
- 🏗️ ️OpenMMLab Family
MMagic (MultimodalAdvanced,Generative, andIntelligentCreation) is an advanced and comprehensive AIGC toolkit that inherits fromMMEditing andMMGeneration. It is an open-source image and video editing&generating toolbox based on PyTorch. It is a part of theOpenMMLab project.
Currently, MMagic support multiple image and video generation/editing tasks.
mmagic_introduction.mp4
State of the Art Models
MMagic provides state-of-the-art generative models to process, edit and synthesize images and videos.
Powerful and Popular Applications
MMagic supports popular and contemporary image restoration, text-to-image, 3D-aware generation, inpainting, matting, super-resolution and generation applications. Specifically, MMagic supports fine-tuning for stable diffusion and many exciting diffusion's application such as ControlNet Animation with SAM. MMagic also supports GAN interpolation, GAN projection, GAN manipulations and many other popular GAN’s applications. It’s time to begin your AIGC exploration journey!
Efficient Framework
By using MMEngine and MMCV of OpenMMLab 2.0 framework, MMagic decompose the editing framework into different modules and one can easily construct a customized editor framework by combining different modules. We can define the training process just like playing with Legos and provide rich components and strategies. In MMagic, you can complete controls on the training process with different levels of APIs. With the support ofMMSeparateDistributedDataParallel, distributed training for dynamic architectures can be easily implemented.
- The best practice on our main branch works withPython 3.9+ andPyTorch 2.0+.
More and more community contributors are joining us to make our repo better. Some recent projects are contributed by the community including:
- SDXL is contributed by @okotaku.
- AnimateDiff is contributed by @ElliotQi.
- ViCo is contributed by @FerryHuang.
- DragGan is contributed by @qsun1.
- FastComposer is contributed by @xiaomile.
Projects is opened to make it easier for everyone to add projects to MMagic.
We appreciate all contributions to improve MMagic. Please refer toCONTRIBUTING.md in MMCV andCONTRIBUTING.md in MMEngine for more details about the contributing guideline.
MMagic depends onPyTorch,MMEngine andMMCV.Below are quick steps for installation.
Step 1.Install PyTorch followingofficial instructions.
Step 2.Install MMCV, MMEngine and MMagic withMIM.
pip3 install openmimmim install mmcv>=2.0.0mim install mmenginemim install mmagicStep 3.Verify MMagic has been successfully installed.
cd~python -c"import mmagic; print(mmagic.__version__)"# Example output: 1.0.0
Getting Started
After installing MMagic successfully, now you are able to play with MMagic! To generate an image from text, you only need several lines of codes by MMagic!
frommmagic.apisimportMMagicInferencersd_inferencer=MMagicInferencer(model_name='stable_diffusion')text_prompts='A panda is having dinner at KFC'result_out_dir='output/sd_res.png'sd_inferencer.infer(text=text_prompts,result_out_dir=result_out_dir)
Please seequick run andinference for the basic usage of MMagic.
Install MMagic from source
You can also experiment on the latest developed version rather than the stable release by installing MMagic from source with the following commands:
git clone https://github.com/open-mmlab/mmagic.gitcd mmagicpip3 install -e.
Please refer toinstallation for more detailed instruction.
| Conditional GANs | Unconditional GANs | Image Restoration | Image Super-Resolution |
| Video Super-Resolution | Video Interpolation | Image Colorization | Image Translation |
| Inpainting | Matting | Text-to-Image(Video) | 3D-aware Generation |
|
Please refer tomodel_zoo for more details.
MMagic is an open source project that is contributed by researchers and engineers from various colleges and companies. 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 methods.
We appreciate all the contributors who implement their methods or add new features, as well as users who give valuable feedbacks. Thank you all!
If MMagic is helpful to your research, please cite it as below.
@misc{mmagic2023,title ={{MMagic}: {OpenMMLab} Multimodal Advanced, Generative, and Intelligent Creation Toolbox},author ={{MMagic Contributors}},howpublished ={\url{https://github.com/open-mmlab/mmagic}},year ={2023}}
@misc{mmediting2022,title ={{MMEditing}: {OpenMMLab} Image and Video Editing Toolbox},author ={{MMEditing Contributors}},howpublished ={\url{https://github.com/open-mmlab/mmediting}},year ={2022}}
This project is released under theApache 2.0 license.Please refer toLICENSES for the careful check, if you are using our code for commercial matters.
- MMEngine: OpenMMLab foundational library for training deep learning models.
- MMCV: OpenMMLab foundational library for computer vision.
- MIM: MIM installs OpenMMLab packages.
- MMPreTrain: OpenMMLab Pre-training 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.
- 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.
- MMagic: OpenMMLab Multimodal Advanced, Generative, and Intelligent Creation Toolbox.
- MMDeploy: OpenMMLab model deployment framework.
About
OpenMMLab Multimodal Advanced, Generative, and Intelligent Creation Toolbox. Unlock the magic 🪄: Generative-AI (AIGC), easy-to-use APIs, awsome model zoo, diffusion models, for text-to-image generation, image/video restoration/enhancement, etc.
Topics
Resources
License
Code of conduct
Contributing
Uh oh!
There was an error while loading.Please reload this page.
Stars
Watchers
Forks
Packages0
Uh oh!
There was an error while loading.Please reload this page.





