saritha5 commited on
Commit
8f16ea0
·
1 Parent(s): 8d5225e

Update app.py

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