Spaces:
Runtime error
Runtime error
Fix Slider
Browse files
app.py
CHANGED
@@ -34,8 +34,7 @@ gr.Interface(
|
|
34 |
gr.inputs.Textbox(label="Text"),
|
35 |
gr.inputs.Dropdown(label="Source Language", choices=LANGS),
|
36 |
gr.inputs.Dropdown(label="Target Language", choices=LANGS),
|
37 |
-
gr.inputs.Slider(label="Max Length"
|
38 |
-
maximum=512, value=400, step=8)
|
39 |
],
|
40 |
["text"],
|
41 |
# examples=examples,
|
|
|
34 |
gr.inputs.Textbox(label="Text"),
|
35 |
gr.inputs.Dropdown(label="Source Language", choices=LANGS),
|
36 |
gr.inputs.Dropdown(label="Target Language", choices=LANGS),
|
37 |
+
gr.inputs.Slider(8,512, default=400, step=8, label="Max Length")
|
|
|
38 |
],
|
39 |
["text"],
|
40 |
# examples=examples,
|