Files changed (1) hide show
  1. README.md +3 -3
README.md CHANGED
@@ -42,11 +42,11 @@ pipe = StableDiffusionInpaintPipeline.from_pretrained(
42
  revision="fp16",
43
  torch_dtype=torch.float16,
44
  )
45
- prompt = "Face of a yellow cat, high resolution, sitting on a park bench"
46
  #image and mask_image should be PIL images.
47
  #The mask structure is white for inpainting and black for keeping as is
48
  image = pipe(prompt=prompt, image=image, mask_image=mask_image).images[0]
49
- image.save("./yellow_cat_on_park_bench.png")
50
  ```
51
 
52
  **How it works:**
@@ -57,7 +57,7 @@ image.save("./yellow_cat_on_park_bench.png")
57
 
58
  `prompt` | `Output`
59
  :-------------------------:|:-------------------------:|
60
- <span style="position: relative;bottom: 150px;">Face of a yellow cat, high resolution, sitting on a park bench</span> | <img src="https://huggingface.co/datasets/patrickvonplaten/images/resolve/main/test.png" alt="drawing" width="300"/>
61
 
62
  ### Original GitHub Repository
63
 
 
42
  revision="fp16",
43
  torch_dtype=torch.float16,
44
  )
45
+ prompt = "a mecha robot sitting on a bench"
46
  #image and mask_image should be PIL images.
47
  #The mask structure is white for inpainting and black for keeping as is
48
  image = pipe(prompt=prompt, image=image, mask_image=mask_image).images[0]
49
+ image.save("./a_mecha_robot_sitting_on_a_bench.png")
50
  ```
51
 
52
  **How it works:**
 
57
 
58
  `prompt` | `Output`
59
  :-------------------------:|:-------------------------:|
60
+ <span style="position: relative;bottom: 150px;">a mecha robot sitting on a bench</span> | <img src="https://huggingface.co/datasets/ameerazam08/images/blob/main/2.png" alt="drawing" width="300"/>
61
 
62
  ### Original GitHub Repository
63