blazingbunny
commited on
Commit
•
2b3eca9
1
Parent(s):
bcb57ec
Update app.py
Browse files
app.py
CHANGED
@@ -17,7 +17,7 @@ if uploaded_file is not None:
|
|
17 |
total_length = len(user_input.split())
|
18 |
|
19 |
# Add sliders to the sidebar
|
20 |
-
min_length_percentage = st.sidebar.slider('Minimum Length %', min_value=10, max_value=
|
21 |
max_length_percentage = min_length_percentage + 10
|
22 |
st.sidebar.text(f'Maximum Length %: {max_length_percentage}')
|
23 |
|
|
|
17 |
total_length = len(user_input.split())
|
18 |
|
19 |
# Add sliders to the sidebar
|
20 |
+
min_length_percentage = st.sidebar.slider('Minimum Length %', min_value=10, max_value=100, value=50)
|
21 |
max_length_percentage = min_length_percentage + 10
|
22 |
st.sidebar.text(f'Maximum Length %: {max_length_percentage}')
|
23 |
|