amazonaws-sp commited on
Commit
a956827
·
verified ·
1 Parent(s): 9af8f7c

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -2
app.py CHANGED
@@ -59,9 +59,8 @@ def generate(
59
 
60
  if not use_vae:
61
  pipe = StableDiffusionImg2ImgPipeline.from_pretrained("runwayml/stable-diffusion-v1-5", torch_dtype=torch.float16)
62
- img = "https://raw.githubusercontent.com/CompVis/stable-diffusion/main/assets/stable-samples/img2img/sketch-mountains-input.jpg"
63
  def resize(value,img):
64
- img = Image.open(img)
65
  img = img.resize((value,value))
66
  return img
67
  source_image = resize(768, source_img)
 
59
 
60
  if not use_vae:
61
  pipe = StableDiffusionImg2ImgPipeline.from_pretrained("runwayml/stable-diffusion-v1-5", torch_dtype=torch.float16)
 
62
  def resize(value,img):
63
+ img = Image.open("https://raw.githubusercontent.com/CompVis/stable-diffusion/main/assets/stable-samples/img2img/sketch-mountains-input.jpg")
64
  img = img.resize((value,value))
65
  return img
66
  source_image = resize(768, source_img)