Spaces:
Running
on
T4
Running
on
T4
Update app.py
Browse files
app.py
CHANGED
@@ -20,7 +20,7 @@ def genie (Prompt, negative_prompt, height, width, scale, steps, seed, upscale):
|
|
20 |
n_steps = 40
|
21 |
high_noise_frac = 0.8
|
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(
|
24 |
return (image, refined)
|
25 |
else:
|
26 |
image = pipe(Prompt, negative_prompt=negative_prompt, height=height, width=width, num_inference_steps=steps, guidance_scale=scale).images[0]
|
|
|
20 |
n_steps = 40
|
21 |
high_noise_frac = 0.8
|
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 (image, refined)
|
25 |
else:
|
26 |
image = pipe(Prompt, negative_prompt=negative_prompt, height=height, width=width, num_inference_steps=steps, guidance_scale=scale).images[0]
|