Update app.py
Browse files
app.py
CHANGED
|
@@ -166,7 +166,7 @@ def summary_downloader(raw_text):
|
|
| 166 |
st.markdown(href,unsafe_allow_html=True)
|
| 167 |
|
| 168 |
def get_all_entities_per_sentence(text):
|
| 169 |
-
doc = nlp(text)
|
| 170 |
|
| 171 |
sentences = list(doc.sents)
|
| 172 |
|
|
|
|
| 166 |
st.markdown(href,unsafe_allow_html=True)
|
| 167 |
|
| 168 |
def get_all_entities_per_sentence(text):
|
| 169 |
+
doc = nlp(''.join(text))
|
| 170 |
|
| 171 |
sentences = list(doc.sents)
|
| 172 |
|