Spaces:
Runtime error
Runtime error
File size: 1,191 Bytes
324bed5 a988da7 0d3e54e a988da7 df13e11 a988da7 9adb6ba 7b97c56 9adb6ba 7b97c56 9adb6ba 7b97c56 0d3e54e 4e870ab 9adb6ba 7b97c56 a988da7 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 |
import streamlit as st
import spacy
from spacy import displacy
from spacy_streamlit import visualize_ner
import en_core_web_sm
NER = spacy.load("en_core_web_sm")
st.title('Entity Extraction')
def prediction(raw_text):
text1= NER(raw_text)
st.write("List wise NERs:")
st.write("------------------")
st.write(f"{'Text' : <10}{'NER' : >10}")
for word in text1.ents:
st.write(word.text,"\t\t",word.label_)
print()
st.write("------------------")
st.write("NERs in the sentence:")
st.markdown(displacy.render(text1,style="ent"))
visualize_ner(tex1, labels=nlp.get_pipe("ner").labels)
raw_text = """Ai-Khanoum (/aɪ ˈhɑːnjuːm/, meaning Lady Moon; Uzbek: Oyxonim) is the archaeological site of a Hellenistic city in Takhar Province, Afghanistan.
The city, whose original name is unknown,[a] was probably founded by an early ruler of the Seleucid Empire and served as a military and economic centre for the rulers of the Greco-Bactrian Kingdom until its destruction c. 145 BC.
Rediscovered in 1961, the ruins of the city were excavated by a French team of archaeologists until the outbreak of conflict in Afghanistan in the late 1970s. """
prediction(raw_text)
|