Spaces:
Runtime error
Runtime error
SameerR007
commited on
Commit
•
45f4ea7
1
Parent(s):
57bfe33
Update app.py
Browse files
app.py
CHANGED
@@ -1,6 +1,7 @@
|
|
1 |
import pytextrank
|
2 |
import spacy
|
3 |
import streamlit as st
|
|
|
4 |
nlp = spacy.load("en_core_web_sm")
|
5 |
nlp.add_pipe("textrank")
|
6 |
input= st.text_area("Input text to summarize")
|
|
|
1 |
import pytextrank
|
2 |
import spacy
|
3 |
import streamlit as st
|
4 |
+
st.title("Extractive Text Summarization")
|
5 |
nlp = spacy.load("en_core_web_sm")
|
6 |
nlp.add_pipe("textrank")
|
7 |
input= st.text_area("Input text to summarize")
|