Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -27,6 +27,9 @@ def main():
|
|
27 |
st.subheader("Tokenization")
|
28 |
elif choice == 'NER':
|
29 |
st.subheader("Name Entity Recognition")
|
|
|
|
|
|
|
30 |
|
31 |
|
32 |
|
|
|
27 |
st.subheader("Tokenization")
|
28 |
elif choice == 'NER':
|
29 |
st.subheader("Name Entity Recognition")
|
30 |
+
raw_text = st.text_area("Your Text","Enter the Text Here")
|
31 |
+
docx = nlp(raw_text)
|
32 |
+
spacy_streamlit.visualize_ner(docx)
|
33 |
|
34 |
|
35 |
|