Update README.md
Browse files
README.md
CHANGED
@@ -36,10 +36,10 @@ please have a look at the [Stable Diffusion Pipeline](https://huggingface.co/doc
|
|
36 |
```python
|
37 |
from diffusers import StableDiffusionPipeline
|
38 |
import torch
|
39 |
-
model_id = "
|
40 |
pipe = StableDiffusionPipeline.from_pretrained(model_id, torch_dtype=torch.float16)
|
41 |
pipe = pipe.to("cuda")
|
42 |
-
prompt = "
|
43 |
image = pipe(prompt).images[0]
|
44 |
image.save("./result.jpg")
|
45 |
```
|
|
|
36 |
```python
|
37 |
from diffusers import StableDiffusionPipeline
|
38 |
import torch
|
39 |
+
model_id = "cledoux42/JUGGALO"
|
40 |
pipe = StableDiffusionPipeline.from_pretrained(model_id, torch_dtype=torch.float16)
|
41 |
pipe = pipe.to("cuda")
|
42 |
+
prompt = "A JUGGALO"
|
43 |
image = pipe(prompt).images[0]
|
44 |
image.save("./result.jpg")
|
45 |
```
|