Spaces:
Running
Running
Update app.py
Browse files
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 |
-
|
83 |
-
|
84 |
-
|
85 |
-
|
86 |
-
|
87 |
-
st.
|
|
|
|
|
|
|
|
|
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)
|