animrods commited on
Commit
6ac7655
·
verified ·
1 Parent(s): e55b6fb

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
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