saritha5 commited on
Commit
4035ab8
·
1 Parent(s): a6f9f12

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -31,7 +31,7 @@ def main():
31
  st.subheader("Name Entity Recognition")
32
  raw_text = st.text_area("Your Text","Enter the Text Here")
33
  docx = nlp(raw_text)
34
- spacy_streamlit.visualize_ner(docx)
35
 
36
 
37
 
 
31
  st.subheader("Name Entity Recognition")
32
  raw_text = st.text_area("Your Text","Enter the Text Here")
33
  docx = nlp(raw_text)
34
+ spacy_streamlit.visualize_ner(docx,labels = nlp.get_pipe('ner'))
35
 
36
 
37