Fictiverse
commited on
Commit
•
8f62792
1
Parent(s):
513e988
Update README.md
Browse files
README.md
CHANGED
@@ -24,12 +24,12 @@ You can also export the model to [ONNX](https://huggingface.co/docs/diffusers/op
|
|
24 |
from diffusers import StableDiffusionPipeline
|
25 |
import torch
|
26 |
|
27 |
-
model_id = "Fictiverse/
|
28 |
pipe = StableDiffusionPipeline.from_pretrained(model_id, torch_dtype=torch.float16)
|
29 |
pipe = pipe.to("cuda")
|
30 |
|
31 |
-
prompt = "
|
32 |
image = pipe(prompt).images[0]
|
33 |
|
34 |
-
image.save("./
|
35 |
```
|
|
|
24 |
from diffusers import StableDiffusionPipeline
|
25 |
import torch
|
26 |
|
27 |
+
model_id = "Fictiverse/ElRisita"
|
28 |
pipe = StableDiffusionPipeline.from_pretrained(model_id, torch_dtype=torch.float16)
|
29 |
pipe = pipe.to("cuda")
|
30 |
|
31 |
+
prompt = "Elrisitas smiling"
|
32 |
image = pipe(prompt).images[0]
|
33 |
|
34 |
+
image.save("./Elrisitas.png")
|
35 |
```
|