ifire commited on
Commit
7f8b190
1 Parent(s): 556dab2

Update min_len value in app.py

Browse files

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

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=60,
72
  step=1,
73
  interactive=False,
74
  label="Min Length",
 
68
  min_len = gr.Slider(
69
  minimum=1,
70
  maximum=100,
71
+ value=25,
72
  step=1,
73
  interactive=False,
74
  label="Min Length",