saritha5 commited on
Commit
a988da7
·
1 Parent(s): 324bed5

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +10 -0
app.py CHANGED
@@ -1 +1,11 @@
1
  import streamlit as st
 
 
 
 
 
 
 
 
 
 
 
1
  import streamlit as st
2
+ import spacy
3
+ from spacy import displacy
4
+ import en_core_web_sm
5
+
6
+ st.title('Entity Extraction')
7
+
8
+
9
+ def local_css(file_name):
10
+ with open(file_name) as f:
11
+ st.markdown('<style>{}</style>'., unsafe_allow_html=True)