cledoux42 commited on
Commit
24b2dcf
1 Parent(s): 0b161b3

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +2 -2
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 = "dreamlike-art/dreamlike-photoreal-1.0"
40
  pipe = StableDiffusionPipeline.from_pretrained(model_id, torch_dtype=torch.float16)
41
  pipe = pipe.to("cuda")
42
- prompt = "caucasian creative man wearing a sweater, sitting, on an icelandic beach"
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
  ```