ItsMeDevRoland commited on
Commit
d6d8734
·
verified ·
1 Parent(s): bd0c4bd

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -15,7 +15,7 @@ iface = gr.Interface(fn=generate_waifu,
15
  inputs=["text", "number", "number", "number", ["linear", "cubic"]],
16
  outputs="image",
17
  inputs_labels=["Seed", "Temperature", "Truncation Psi", "Num Samples", "Interpolation"],
18
- inputs_ranges=[(0, 1000000), (0.1, 2.0), (0.1, 2.0), (1, 10), None],
19
  title="Waifu Generator",
20
  description="Generate anime-style waifus with customizable settings.")
21
 
 
15
  inputs=["text", "number", "number", "number", ["linear", "cubic"]],
16
  outputs="image",
17
  inputs_labels=["Seed", "Temperature", "Truncation Psi", "Num Samples", "Interpolation"],
18
+ inputs_ranges=[(0, 1000000), (0.1, 2.0), (0.1, 2.0), (1, 10), ["linear", "cubic"]],
19
  title="Waifu Generator",
20
  description="Generate anime-style waifus with customizable settings.")
21