ifire commited on
Commit
eacd4b4
1 Parent(s): 3cd7c47

Update min_len value in app.py

Browse files

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

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