rathore11 commited on
Commit
45c79dd
1 Parent(s): cefc334

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +1 -1
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
  ```