Spaces:
Runtime error
Runtime error
Update app.py
Browse files
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 |
-
|
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 |
|