Update README.md
Browse files
README.md
CHANGED
@@ -30,6 +30,6 @@ This is a Stable Diffusion model fine-tuned on `dog` images for the animal theme
|
|
30 |
from diffusers import StableDiffusionPipeline
|
31 |
|
32 |
pipeline = StableDiffusionPipeline.from_pretrained('rathore11/cheeku-dog')
|
33 |
-
image = pipeline().images[0]
|
34 |
image
|
35 |
```
|
|
|
30 |
from diffusers import StableDiffusionPipeline
|
31 |
|
32 |
pipeline = StableDiffusionPipeline.from_pretrained('rathore11/cheeku-dog')
|
33 |
+
image = pipeline(prompt="a photo of a cheeku dog").images[0]# prompt can be changed but it should start with - a photo of cheeku dog
|
34 |
image
|
35 |
```
|