Update app.py
Browse files
app.py
CHANGED
@@ -29,7 +29,6 @@ def infer(
|
|
29 |
randomize_seed,
|
30 |
width,
|
31 |
height,
|
32 |
-
guidance_scale,
|
33 |
num_inference_steps,
|
34 |
progress=gr.Progress(track_tqdm=True),
|
35 |
):
|
@@ -41,7 +40,6 @@ def infer(
|
|
41 |
image = pipe(
|
42 |
prompt=prompt,
|
43 |
negative_prompt=negative_prompt,
|
44 |
-
guidance_scale=guidance_scale,
|
45 |
num_inference_steps=num_inference_steps,
|
46 |
width=width,
|
47 |
height=height,
|
@@ -127,7 +125,6 @@ with gr.Blocks(css=css) as demo:
|
|
127 |
randomize_seed,
|
128 |
width,
|
129 |
height,
|
130 |
-
guidance_scale,
|
131 |
num_inference_steps,
|
132 |
],
|
133 |
outputs=[result, seed],
|
|
|
29 |
randomize_seed,
|
30 |
width,
|
31 |
height,
|
|
|
32 |
num_inference_steps,
|
33 |
progress=gr.Progress(track_tqdm=True),
|
34 |
):
|
|
|
40 |
image = pipe(
|
41 |
prompt=prompt,
|
42 |
negative_prompt=negative_prompt,
|
|
|
43 |
num_inference_steps=num_inference_steps,
|
44 |
width=width,
|
45 |
height=height,
|
|
|
125 |
randomize_seed,
|
126 |
width,
|
127 |
height,
|
|
|
128 |
num_inference_steps,
|
129 |
],
|
130 |
outputs=[result, seed],
|