Eunchan Lee commited on
Commit
fa5e082
1 Parent(s): ea80d75
Files changed (1) hide show
  1. app.py +3 -1
app.py CHANGED
@@ -83,15 +83,17 @@ if submit_button:
83
 
84
  get_1 = get_summarizer(summarizer_1, text_input, 150, 5)
85
  get_2 = get_summarizer(summarizer_2, text_input, 150, 5)
 
86
 
87
  output_text.append(get_1)
88
  output_text.append(get_2)
 
89
  #output_text.append(get_summarizer(summarizer_3, text_input, 150, 5))
90
 
91
 
92
  st.markdown("### Outputs are here !: ")
93
 
94
- for i in range(2):
95
  st.markdown("**"+ plms[i] +"s Output: ** ")
96
  st.text(output_text[i])
97
  st.success(f"{i+1} of 3 are done!")
 
83
 
84
  get_1 = get_summarizer(summarizer_1, text_input, 150, 5)
85
  get_2 = get_summarizer(summarizer_2, text_input, 150, 5)
86
+ get_3 = get_summarizer(summarizer_3, text_input, 150, 5)
87
 
88
  output_text.append(get_1)
89
  output_text.append(get_2)
90
+ output_text.append(get_3)
91
  #output_text.append(get_summarizer(summarizer_3, text_input, 150, 5))
92
 
93
 
94
  st.markdown("### Outputs are here !: ")
95
 
96
+ for i in range(3):
97
  st.markdown("**"+ plms[i] +"s Output: ** ")
98
  st.text(output_text[i])
99
  st.success(f"{i+1} of 3 are done!")