Fictiverse
commited on
Commit
•
c9e753f
1
Parent(s):
d5ed253
Update README.md
Browse files
README.md
CHANGED
@@ -23,11 +23,11 @@ You can also export the model to [ONNX](https://huggingface.co/docs/diffusers/op
|
|
23 |
from diffusers import StableDiffusionPipeline
|
24 |
import torch
|
25 |
|
26 |
-
model_id = "Fictiverse/
|
27 |
pipe = StableDiffusionPipeline.from_pretrained(model_id, torch_dtype=torch.float16)
|
28 |
pipe = pipe.to("cuda")
|
29 |
|
30 |
-
prompt = "
|
31 |
image = pipe(prompt).images[0]
|
32 |
|
33 |
image.save("./R2-D2.png")
|
|
|
23 |
from diffusers import StableDiffusionPipeline
|
24 |
import torch
|
25 |
|
26 |
+
model_id = "Fictiverse/Stable_Diffusion_BalloonArt_Model"
|
27 |
pipe = StableDiffusionPipeline.from_pretrained(model_id, torch_dtype=torch.float16)
|
28 |
pipe = pipe.to("cuda")
|
29 |
|
30 |
+
prompt = "BalloonArt R2-D2"
|
31 |
image = pipe(prompt).images[0]
|
32 |
|
33 |
image.save("./R2-D2.png")
|