saritha5 commited on
Commit
2532b89
·
1 Parent(s): f693cd2

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -38,8 +38,8 @@ archaeologists until the outbreak of conflict in Afghanistan in the late 1970s.
38
  st.subheader("Name Entity Recognition")
39
  raw_text = st.text_area("Your Text","Enter the Text Here")
40
  docx = nlp(raw_text)
41
- #spacy_streamlit.visualize_ner(docx,labels = nlp.get_pipe('ner').labels)
42
- displacy.render(docx,style="ent")
43
 
44
 
45
 
 
38
  st.subheader("Name Entity Recognition")
39
  raw_text = st.text_area("Your Text","Enter the Text Here")
40
  docx = nlp(raw_text)
41
+ spacy_streamlit.visualize_ner(docx,labels = nlp.get_pipe('ner').labels,show_table: bool = False)
42
+ #displacy.render(docx,style="ent")
43
 
44
 
45