rkv1990 commited on
Commit
10171ce
·
verified ·
1 Parent(s): 407ff0c

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +2 -6
README.md CHANGED
@@ -113,12 +113,8 @@ def prepare_masked_image(
113
  def main():
114
  """Entry point for running the FluxFill pipeline."""
115
  # Load input image and its corresponding mask
116
- input_image = load_image(
117
- "https://huggingface.co/datasets/diffusers/diffusers-images-docs/resolve/main/cup.png"
118
- )
119
- fg_mask = load_image(
120
- "https://huggingface.co/datasets/diffusers/diffusers-images-docs/resolve/main/cup_mask.png"
121
- )
122
 
123
  masked_image = prepare_masked_image(foreground=input_image, mask=fg_mask)
124
 
 
113
  def main():
114
  """Entry point for running the FluxFill pipeline."""
115
  # Load input image and its corresponding mask
116
+ fg_mask = load_image("https://huggingface.co/rkv1990/FLUX.1-Fill-dev-outpainting/resolve/main/beauty-products-mask.png")
117
+ input_image= load_image("https://huggingface.co/rkv1990/FLUX.1-Fill-dev-outpainting/resolve/main/beauty-products.png")
 
 
 
 
118
 
119
  masked_image = prepare_masked_image(foreground=input_image, mask=fg_mask)
120