Commit
·
add411e
1
Parent(s):
98fc890
Update README.md
Browse files
README.md
CHANGED
|
@@ -27,12 +27,12 @@ You can also export the model to [ONNX](https://huggingface.co/docs/diffusers/op
|
|
| 27 |
from diffusers import StableDiffusionPipeline
|
| 28 |
import torch
|
| 29 |
|
| 30 |
-
model_id = "Fictiverse/
|
| 31 |
pipe = StableDiffusionPipeline.from_pretrained(model_id, torch_dtype=torch.float16)
|
| 32 |
pipe = pipe.to("cuda")
|
| 33 |
|
| 34 |
-
prompt = "
|
| 35 |
image = pipe(prompt).images[0]
|
| 36 |
|
| 37 |
-
image.save("./
|
| 38 |
```
|
|
|
|
| 27 |
from diffusers import StableDiffusionPipeline
|
| 28 |
import torch
|
| 29 |
|
| 30 |
+
model_id = "Fictiverse/Stable_Diffusion_Microscopic_model"
|
| 31 |
pipe = StableDiffusionPipeline.from_pretrained(model_id, torch_dtype=torch.float16)
|
| 32 |
pipe = pipe.to("cuda")
|
| 33 |
|
| 34 |
+
prompt = "microscopic creature"
|
| 35 |
image = pipe(prompt).images[0]
|
| 36 |
|
| 37 |
+
image.save("./microscopic.png")
|
| 38 |
```
|