Create README.md
Browse files
README.md
ADDED
|
@@ -0,0 +1,51 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
language:
|
| 3 |
+
- en
|
| 4 |
+
license: creativeml-openrail-m
|
| 5 |
+
tags:
|
| 6 |
+
- stable-diffusion
|
| 7 |
+
- stable-diffusion-diffusers
|
| 8 |
+
- text-to-image
|
| 9 |
+
- art
|
| 10 |
+
- artistic
|
| 11 |
+
- diffusers
|
| 12 |
+
- anime
|
| 13 |
+
- dreamshaper
|
| 14 |
+
- lcm
|
| 15 |
+
duplicated_from: lykon/AAM_AnyLora_AnimeMix-LCM
|
| 16 |
+
pipeline_tag: text-to-image
|
| 17 |
+
---
|
| 18 |
+
|
| 19 |
+
# AAM_AnyLora_AnimeMix LCM
|
| 20 |
+
|
| 21 |
+
`lykon/AAM_AnyLora_AnimeMix-LCM` is a Stable Diffusion model that has been fine-tuned on [runwayml/stable-diffusion-v1-5](https://huggingface.co/runwayml/stable-diffusion-v1-5).
|
| 22 |
+
|
| 23 |
+
Please consider supporting me:
|
| 24 |
+
- on [Patreon](https://www.patreon.com/Lykon275)
|
| 25 |
+
- or [buy me a coffee](https://snipfeed.co/lykon)
|
| 26 |
+
|
| 27 |
+
## Diffusers
|
| 28 |
+
|
| 29 |
+
For more general information on how to run text-to-image models with 🧨 Diffusers, see [the docs](https://huggingface.co/docs/diffusers/using-diffusers/conditional_image_generation).
|
| 30 |
+
|
| 31 |
+
1. Installation
|
| 32 |
+
|
| 33 |
+
```
|
| 34 |
+
pip install diffusers transformers accelerate
|
| 35 |
+
```
|
| 36 |
+
|
| 37 |
+
2. Run
|
| 38 |
+
```py
|
| 39 |
+
from diffusers import AutoPipelineForText2Image, LCMScheduler
|
| 40 |
+
import torch
|
| 41 |
+
|
| 42 |
+
pipe = AutoPipelineForText2Image.from_pretrained('lykon/AAM_AnyLora_AnimeMix-LCM', torch_dtype=torch.float16, variant="fp16")
|
| 43 |
+
pipe.scheduler = LCMScheduler.from_config(pipe.scheduler.config)
|
| 44 |
+
pipe = pipe.to("cuda")
|
| 45 |
+
|
| 46 |
+
prompt = "portrait photo of muscular bearded guy in a worn mech suit, light bokeh, intricate, steel metal, elegant, sharp focus, soft lighting, vibrant colors"
|
| 47 |
+
|
| 48 |
+
generator = torch.manual_seed(0)
|
| 49 |
+
image = pipe(prompt, num_inference_steps=15, guidance_scale=2, generator=generator).images[0]
|
| 50 |
+
image.save("./image.png")
|
| 51 |
+
```
|