Prathap commited on
Commit
74a03fa
·
1 Parent(s): 941fce6

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -66,7 +66,7 @@ if st.button("Submit"):
66
 
67
  with st.spinner("Loading the Model into the memory...."):
68
  model=pipen()
69
- res = model(chunks, max_length=120, min_length=30, do_sample=False)
70
  text = ' '.join([summ['summary_text'] for summ in res])
71
 
72
  st.write("Success")
 
66
 
67
  with st.spinner("Loading the Model into the memory...."):
68
  model=pipen()
69
+ res = model(chunks, max_length=50, min_length=30, do_sample=False)
70
  text = ' '.join([summ['summary_text'] for summ in res])
71
 
72
  st.write("Success")