Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -86,7 +86,7 @@ def main():
|
|
86 |
summarized_text = summarizer_model(text_to_summarize, max_length=max_length, min_length=min_length)
|
87 |
summarized_text = ' '.join([summ['summary_text'] for summ in summarized_text])
|
88 |
|
89 |
-
|
90 |
with res_col1:
|
91 |
st.subheader("Generated Text Visualisation")
|
92 |
# Create and generate a word cloud image:
|
|
|
86 |
summarized_text = summarizer_model(text_to_summarize, max_length=max_length, min_length=min_length)
|
87 |
summarized_text = ' '.join([summ['summary_text'] for summ in summarized_text])
|
88 |
|
89 |
+
res_col1 ,res_col2 = st.columns(2)
|
90 |
with res_col1:
|
91 |
st.subheader("Generated Text Visualisation")
|
92 |
# Create and generate a word cloud image:
|