kenfoo commited on
Commit
672f2a3
·
verified ·
1 Parent(s): 9c3af51

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -3
app.py CHANGED
@@ -70,10 +70,10 @@ def infer(
70
  images=images_input,
71
  prompt=prompt,
72
  lora_adapter=lora_adapter,
73
- seed=float(seed),
74
  randomize_seed=bool(randomize_seed),
75
- guidance_scale=float(guidance_scale),
76
- steps=float(steps),
77
  api_name="/infer",
78
  )
79
 
 
70
  images=images_input,
71
  prompt=prompt,
72
  lora_adapter=lora_adapter,
73
+ seed=int(seed),
74
  randomize_seed=bool(randomize_seed),
75
+ guidance_scale=int(guidance_scale),
76
+ steps=int(steps),
77
  api_name="/infer",
78
  )
79