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