File size: 242 Bytes
324bed5
a988da7
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
import streamlit as st 
import spacy
from spacy import displacy
import en_core_web_sm

st.title('Entity Extraction')


def local_css(file_name):
    with open(file_name) as f:
        st.markdown('<style>{}</style>'., unsafe_allow_html=True)