Manjushri commited on
Commit
2a0b08f
1 Parent(s): 8ff73b0

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +4 -4
app.py CHANGED
@@ -21,11 +21,11 @@ upscaler4x = upscaler4x.to(device)
21
  def upscale(raw_img, model, prompt, negative_prompt, scale, steps):
22
  generator = torch.manual_seed(999999)
23
  low_res_img = Image.open(raw_img).convert("RGB")
24
- if model == "Upscaler 4x":
25
- low_res_img = low_res_img.resize((128, 128))
26
  else:
27
- low_res_img
28
- image = upscaler2x(prompt=prompt, negative_prompt=negative_prompt, image=low_res_img, guidance_scale=scale, num_inference_steps=steps).images[0] if model == "Upscaler 2x" else upscaler4x(prompt=prompt, negative_prompt=negative_prompt, image=low_res_img, guidance_scale=scale, num_inference_steps=steps).images[0]
29
  return image
30
 
31
  #launch interface
 
21
  def upscale(raw_img, model, prompt, negative_prompt, scale, steps):
22
  generator = torch.manual_seed(999999)
23
  low_res_img = Image.open(raw_img).convert("RGB")
24
+ if model == "Upscaler 2x":
25
+ image = upscaler2x(prompt=prompt, negative_prompt=negative_prompt, image=low_res_img, guidance_scale=scale, num_inference_steps=steps).images[0]
26
  else:
27
+ low_res_img = low_res_img.resize((128, 128))
28
+ image = upscaler4x(prompt=prompt, negative_prompt=negative_prompt, image=low_res_img, guidance_scale=scale, num_inference_steps=steps).images[0]
29
  return image
30
 
31
  #launch interface