Instructions to use GeneralAwareness/MirrorMask with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Diffusers
How to use GeneralAwareness/MirrorMask with Diffusers:
pip install -U diffusers transformers accelerate
import torch from diffusers import DiffusionPipeline # switch to "mps" for apple devices pipe = DiffusionPipeline.from_pretrained("GeneralAwareness/MirrorMask", dtype=torch.bfloat16, device_map="cuda") prompt = "Astronaut in a jungle, cold color palette, muted colors, detailed, 8k" image = pipe(prompt).images[0] - Notebooks
- Google Colab
- Kaggle
- Local Apps
- Draw Things
- DiffusionBee
| license: cc-by-nc-sa-4.0 | |
| language: | |
| - en | |
| thumbnail: "https://huggingface.co/GeneralAwareness/Mirrormask/resolve/main/mm1.png" | |
| tags: | |
| - stable-diffusion | |
| - text-to-image | |
| - image-to-image | |
| - diffusers | |
| ### Mirror Mask | |
| Welcome to MirrorMask - This is a fine-tuned Stable Diffusion model trained from the 2005 dark fantasy film MirrorMask. | |
| Use the token mirrormask in your prompts for the style to show. Examples down below: | |
|  | |
| #### Prompt | |
| An example of calling mirrormask before the prompt (mirrormask a woman) | |
|  | |
| An example of calling mirrormask with a comma before the prompt (mirrormask, a woman) | |
|  | |
| An example of calling mirrormask with the additional word of "by" before the prompt (mirrormask by a woman) | |
|  | |
| An example of calling mirrormask with the additional word of "in" before the prompt (mirrormask in a woman) | |
|  | |
| An example of calling the prompt then mirrormask (a woman mirrormask) | |
|  | |
| An example of calling the prompt then adding a comma before mirrormask (a woman, mirrormask) | |
|  | |
| An example of calling the prompt then adding the word "in" before mirrormask (a woman in mirrormask) | |
|  | |
| An example of calling the prompt then adding the word "by" before mirrormask (a woman by mirrormask) | |
|  | |
| For more variety try adding the word "style" after the token word mirrormask (no examples given to save space). | |
| ### 🧨 Diffusers | |
| This model can be used just as you would any other Stable Diffusion style model. For more information, | |
| please have a look at the [Stable Diffusion](https://huggingface.co/docs/diffusers/api/pipelines/stable_diffusion). | |
| You can also export the model to [ONNX](https://huggingface.co/docs/diffusers/optimization/onnx), [MPS](https://huggingface.co/docs/diffusers/optimization/mps) and/or [FLAX/JAX](). | |
| ```python | |
| from diffusers import StableDiffusionPipeline | |
| import torch | |
| model_id = "GeneralAwareness/MirrorMask" | |
| pipe = StableDiffusionPipeline.from_pretrained(model_id, torch_dtype=torch.float16) | |
| pipe = pipe.to("cuda") | |
| prompt = "a woman by mirrormask" | |
| image = pipe(prompt).images[0] | |
| image.save("./awoman.png") | |
| ``` | |
| ## License | |
| This model is under a creative commons Attribution-NonCommercial-ShareAlike 4.0 International (CC BY-NC-SA 4.0). | |
| To see what rights you have under this licence follow this link - https://creativecommons.org/licenses/by-nc-sa/4.0/ |