Manjushri commited on
Commit
cdd3e1a
1 Parent(s): 677b35b

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -3
app.py CHANGED
@@ -17,10 +17,10 @@ refiner = refiner.to(device)
17
  def genie (Prompt, negative_prompt, height, width, scale, steps, seed, upscale):
18
  generator = np.random.seed(0) if seed == 0 else torch.manual_seed(seed)
19
  if upscale == "Yes":
20
- n_steps = 30
21
- high_noise_frac = 0.95
22
  int_image = pipe(Prompt, negative_prompt=negative_prompt, height=height, width=width, num_inference_steps=steps, guidance_scale=scale).images[0]
23
- image = refiner(Prompt, negative_prompt=negative_prompt, image=int_image, num_inference_steps=n_steps, denoising_start=high_noise_frac).images[0]
24
  return (int_image, image)
25
  else:
26
  image = pipe(Prompt, negative_prompt=negative_prompt, height=height, width=width, num_inference_steps=steps, guidance_scale=scale).images[0]
 
17
  def genie (Prompt, negative_prompt, height, width, scale, steps, seed, upscale):
18
  generator = np.random.seed(0) if seed == 0 else torch.manual_seed(seed)
19
  if upscale == "Yes":
20
+ #n_steps = 30
21
+ #high_noise_frac = 0.95
22
  int_image = pipe(Prompt, negative_prompt=negative_prompt, height=height, width=width, num_inference_steps=steps, guidance_scale=scale).images[0]
23
+ image = refiner(Prompt, negative_prompt=negative_prompt, image=int_image).images[0]
24
  return (int_image, image)
25
  else:
26
  image = pipe(Prompt, negative_prompt=negative_prompt, height=height, width=width, num_inference_steps=steps, guidance_scale=scale).images[0]