OOlajide commited on
Commit
a9e7bc2
·
1 Parent(s): f0f9974

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +10 -6
app.py CHANGED
@@ -79,12 +79,16 @@ elif option == "Text summarization":
79
 
80
  elif source == "I want to upload a file":
81
  uploaded_file = st.file_uploader("Choose a .txt file to upload", type=["txt"])
82
- button = st.button('Get summary')
83
- if button:
84
- summarizer = summarization_model()
85
- with st.spinner(text="Summarizing text..."):
86
- summary = summarizer(text, max_length=130, min_length=30)
87
- st.write(summary)
 
 
 
 
88
 
89
  elif option == 'Text generation':
90
  st.markdown("<h2 style='text-align: center; color:grey;'>Generate text</h2>", unsafe_allow_html=True)
 
79
 
80
  elif source == "I want to upload a file":
81
  uploaded_file = st.file_uploader("Choose a .txt file to upload", type=["txt"])
82
+ if uploaded_file is not None:
83
+ raw_text = str(uploaded_file.read(),"utf-8")
84
+ text = st.text_area("", value=raw_text, height=330)
85
+ button = st.button("Get summary")
86
+ if button:
87
+ with st.spinner(text="Loading summarization model..."):
88
+ summarizer = summarization_model()
89
+ with st.spinner(text="Summarizing text..."):
90
+ summary = summarizer(text, max_length=130, min_length=30)
91
+ st.write(summary[0]["summary_text"])
92
 
93
  elif option == 'Text generation':
94
  st.markdown("<h2 style='text-align: center; color:grey;'>Generate text</h2>", unsafe_allow_html=True)