nickmuchi commited on
Commit
8c5f28b
1 Parent(s): e1bacfa

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
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