juyam commited on
Commit
df80462
·
verified ·
1 Parent(s): d347322

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +0 -2
app.py CHANGED
@@ -41,8 +41,6 @@ def expand_image(image):
41
  # Inpainting 処理を実行
42
  output = pipe(prompt=prompt, negative_prompt=negative_prompt, image=new_image, mask_image=mask).images[0]
43
 
44
- # 画像を保存して確認
45
- output.save("E:/jamad_files/Temp_generated_image.png")
46
 
47
  return output # 画像をリサイズ後、結果とともに返す
48
 
 
41
  # Inpainting 処理を実行
42
  output = pipe(prompt=prompt, negative_prompt=negative_prompt, image=new_image, mask_image=mask).images[0]
43
 
 
 
44
 
45
  return output # 画像をリサイズ後、結果とともに返す
46