File size: 1,904 Bytes
61b4a35
 
 
 
 
 
 
 
 
 
 
 
ba1f9e9
15a03a2
61b4a35
15a03a2
61b4a35
 
 
15a03a2
 
61b4a35
 
 
 
 
 
 
 
 
 
 
 
 
15a03a2
61b4a35
 
 
 
 
 
 
 
 
 
 
 
 
 
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/15003/cyberrealistic

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

Examples | Examples | Examples
---- | ---- | ----
![](https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/92c05a74-23f0-471e-ac1a-fb7061177dc8/width=450/3.18.jpeg) | ![](https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/9e5435dc-dbd2-4afd-8430-7d0267299788/width=450/3.13.jpeg) | ![](https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/c5ca3fb9-b347-4e89-9694-b62528e4bd8b/width=450/3.11.jpeg)
![](https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/83f2dff8-029c-463d-9df4-b21fe672f07f/width=450/3.22.jpeg) | ![](https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/583afcde-8696-4349-b8ff-1ae2465d9cad/width=450/320.jpeg) | ![](https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/53472642-36a3-45c1-942c-d7b7c0a87c8c/width=450/3.21.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/CyberRealistic_V3"
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)