ifire commited on
Commit
923a6bf
1 Parent(s): 7b56fcc

Update min_len value to 25 in app.py

Browse files

The commit updates the value of min_len from 50 to 25 in the app.py file. This change ensures that the minimum length slider has a default value of 25 instead of 50.

Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -68,7 +68,7 @@ with gr.Blocks(theme=theme, analytics_enabled=False,css=css) as demo:
68
  min_len = gr.Slider(
69
  minimum=1,
70
  maximum=100,
71
- value=50,
72
  step=1,
73
  interactive=True,
74
  label="Min Length",
 
68
  min_len = gr.Slider(
69
  minimum=1,
70
  maximum=100,
71
+ value=25,
72
  step=1,
73
  interactive=True,
74
  label="Min Length",