Update README.md
Browse files
README.md
CHANGED
|
@@ -11,14 +11,14 @@ inference: true
|
|
| 11 |
---
|
| 12 |
|
| 13 |
Diffuser model for this SD checkpoint:
|
| 14 |
-
https://civitai.com/models/
|
| 15 |
|
| 16 |
-
**
|
| 17 |
|
| 18 |
Examples | Examples | Examples
|
| 19 |
---- | ---- | ----
|
| 20 |
-

|
| 37 |
pipe = pipe.to("cuda")
|
| 38 |
|
|
|
|
| 11 |
---
|
| 12 |
|
| 13 |
Diffuser model for this SD checkpoint:
|
| 14 |
+
https://civitai.com/models/15003/cyberrealistic
|
| 15 |
|
| 16 |
+
**emilianJR/CyberRealistic_V3** is the HuggingFace diffuser that you can use with **diffusers.StableDiffusionPipeline()**.
|
| 17 |
|
| 18 |
Examples | Examples | Examples
|
| 19 |
---- | ---- | ----
|
| 20 |
+
 |  | 
|
| 21 |
+
 |  | 
|
| 22 |
-------
|
| 23 |
|
| 24 |
|
|
|
|
| 32 |
from diffusers import StableDiffusionPipeline
|
| 33 |
import torch
|
| 34 |
|
| 35 |
+
model_id = "emilianJR/CyberRealistic_V3"
|
| 36 |
pipe = StableDiffusionPipeline.from_pretrained(model_id, torch_dtype=torch.float16)
|
| 37 |
pipe = pipe.to("cuda")
|
| 38 |
|