Update app.py
Browse files
app.py
CHANGED
@@ -179,7 +179,7 @@ model_type = st.sidebar.selectbox(
|
|
179 |
"Model type", options=["Facebook-Bart", "Sshleifer-DistilBart"]
|
180 |
)
|
181 |
|
182 |
-
max_len= st.sidebar.slider("Maximum length of the summarized text",min_value=
|
183 |
min_len= st.sidebar.slider("Minimum length of the summarized text",min_value=10,step=10)
|
184 |
|
185 |
st.markdown(
|
|
|
179 |
"Model type", options=["Facebook-Bart", "Sshleifer-DistilBart"]
|
180 |
)
|
181 |
|
182 |
+
max_len= st.sidebar.slider("Maximum length of the summarized text",min_value=80,max_value=500,step=10)
|
183 |
min_len= st.sidebar.slider("Minimum length of the summarized text",min_value=10,step=10)
|
184 |
|
185 |
st.markdown(
|