File size: 2,700 Bytes
17d51dd
 
 
 
 
 
 
 
 
 
 
 
29c76f0
e083072
17d51dd
e083072
17d51dd
 
 
e083072
 
17d51dd
 
 
 
 
 
 
 
 
 
 
 
 
e083072
17d51dd
 
 
 
 
 
 
 
 
 
 
 
 
 
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
---
language:
- en
license: creativeml-openrail-m
tags:
- stable-diffusion
- stable-diffusion-diffusers
- text-to-image
- diffusers
inference: true
---

Diffuser model for this SD checkpoint:
https://civitai.com/models/47274/xxmix9realistic

**emilianJR/XXMix_9realistic** is the HuggingFace diffuser that you can use with **diffusers.StableDiffusionPipeline()**.

Examples | Examples | Examples
---- | ---- | ----
![](https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/acc1fcb9-8c38-41b5-a2bf-2d8e25b5dfa0/width=450/12593-59395151-a%20lovely%20painting%20of%20a%20girl%20in%20the%20forest%20with%20light%20snow%20falling,.jpeg) | ![](https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/cb88672d-6304-4707-969e-a113723fe5d8/width=1024/34182-1565753241-absurdres,%20(best%20quality),%20(masterpiece),(ultra-detailed_1.2),(photorealistic_1.4),(highres),reflection,low%20ang.jpeg) | ![](https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/41f4f1dd-57f6-4df5-9922-ee60d1e98a0e/width=1024/33752-134533717-masterpiece,1girl,%20best%20quality,%2090s%20dark%20fantasy%20movie%20still,Cool%20colors.jpeg)
![](https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/f9c3bbda-9ca7-4ab0-abb4-fc28417ba94a/width=1024/34041-3900745944-absurdres,%20(best%20quality),%20(masterpiece),(ultra-detailed_1.2),(photorealistic_1.4),(highres),reflection,low%20ang.jpeg) | ![](https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/76c7d0b9-a0b7-4183-a400-761d471eaa7b/width=1024/33834-3316048050-(RAW%20photo,%20best%20quality),%20high%20detailed%20skin,%20outdoor,%20Standing%20in%20the%20middle%20of%20the%20water,%20reflection,%20backli.jpeg) | ![](https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/7dbde980-e8bd-4138-aab4-9922e0fc63af/width=1024/12421-705902971-(masterpiece_1.2,%20best%20quality),%20(old%20man_1.2),%20,%20solo,%20white%20background,%20balck%20eyes,%20(white%20Beard_1.2),%20Fur%20clothes,%20muscular,.jpeg)
-------


## 🧨 Diffusers

This model can be used just like any other Stable Diffusion model. For more information,
please have a look at the [Stable Diffusion](https://huggingface.co/docs/diffusers/api/pipelines/stable_diffusion).


```python
from diffusers import StableDiffusionPipeline
import torch

model_id = "emilianJR/XXMix_9realistic"
pipe = StableDiffusionPipeline.from_pretrained(model_id, torch_dtype=torch.float16)
pipe = pipe.to("cuda")

prompt = "YOUR PROMPT"
image = pipe(prompt).images[0]

image.save("image.png")
```

## License

This model is open access and available to all, with a CreativeML OpenRAIL-M license further specifying rights and usage.
The CreativeML OpenRAIL License specifies: 
[Please read the full license here](https://huggingface.co/spaces/CompVis/stable-diffusion-license)