File size: 1,059 Bytes
e0d8455
 
d0c0a4e
e0d8455
d0c0a4e
e0d8455
d0c0a4e
e0d8455
d0c0a4e
e0d8455
d0c0a4e
e0d8455
d0c0a4e
 
 
 
e0d8455
d0c0a4e
e0d8455
d0c0a4e
39bd1b3
d0c0a4e
e0d8455
d0c0a4e
e0d8455
d0c0a4e
 
e0d8455
d0c0a4e
 
e0d8455
d0c0a4e
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
---
library_name: diffusers
license: mit
---
## Illustrious XL Model Card

Illustrious XL is a latent text-to-image diffusion model capable of generating images of Anime characters, mainly, among other things. For more information about how Stable Diffusion functions, please have a look at 🤗's [Stable Diffusion blog](https://huggingface.co/blog/stable_diffusion).

You can use this with the 🧨Diffusers library from [Hugging Face](https://huggingface.co).

![So normal, right?](pipe.png)

### Diffusers
```py
from diffusers import StableDiffusionXLPipeline
import torch

pipeline = StableDiffusionXLPipeline.from_pretrained("glides/illustriousxl").to("cuda")

image = pipeline(prompt="a girl wearing a top hat").images[0]
image.save("girl.png")
```

### Limitations

- The model does not achieve perfect drawing photorealism
- The model cannot render legible text

### Developed by
- OnamaAI

*This model card was written by Noa Roggendorff and is based on the [Stable Diffusion v1-5 Model Card](https://huggingface.co/runwayml/stable-diffusion-v1-5).*