Spaces:
Running
on
Zero
Running
on
Zero
Update app.py
Browse files
app.py
CHANGED
@@ -39,9 +39,9 @@ def predict(dict, prompt="high quality, best quality", negative_prompt="", guida
|
|
39 |
prompt=prompt,
|
40 |
negative_prompt=negative_prompt,
|
41 |
ip_adapter_image=init_image,
|
42 |
-
num_inference_steps=steps,
|
43 |
generator=generator,
|
44 |
-
height=height, width=width,
|
45 |
guidance_scale=guidance_scale
|
46 |
).images
|
47 |
|
|
|
39 |
prompt=prompt,
|
40 |
negative_prompt=negative_prompt,
|
41 |
ip_adapter_image=init_image,
|
42 |
+
num_inference_steps=int(steps),
|
43 |
generator=generator,
|
44 |
+
height=int(height), width=int(width),
|
45 |
guidance_scale=guidance_scale
|
46 |
).images
|
47 |
|