MrGanesh commited on
Commit
a956a23
·
1 Parent(s): 78128cf

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -11,8 +11,8 @@ st.title("Patent Text Summarizer")
11
  sentence = st.text_area('Please paste your Patent Text :', height=30)
12
  button = st.button("Summarize")
13
 
14
- max = st.sidebar.slider('Select max', 50, 500, step=10, value=120)
15
- min = st.sidebar.slider('Select min', 10, 50, step=10, value=50)
16
  #do_sample = st.sidebar.checkbox("Do sample", value=False)
17
  with st.spinner("Generating Patent Summary.."):
18
  if button and sentence:
 
11
  sentence = st.text_area('Please paste your Patent Text :', height=30)
12
  button = st.button("Summarize")
13
 
14
+ #max = st.sidebar.slider('Select max', 50, 500, step=10, value=120)
15
+ min = st.sidebar.slider('Select min', 10, 250, step=10, value=100)
16
  #do_sample = st.sidebar.checkbox("Do sample", value=False)
17
  with st.spinner("Generating Patent Summary.."):
18
  if button and sentence: