saritha5 commited on
Commit
9adb6ba
·
1 Parent(s): a58e647

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +16 -7
app.py CHANGED
@@ -6,12 +6,21 @@ import en_core_web_sm
6
  NER = spacy.load("en_core_web_sm")
7
  st.title('Entity Extraction')
8
 
9
- raw_text="The Indian Space Research Organisation or is the national space agency of India, headquartered in Bengaluru. It operates under Department of Space which is directly overseen by the Prime Minister of India while Chairman of ISRO acts as executive of DOS as well."
10
- text1= NER(raw_text)
 
 
 
 
 
 
 
 
 
11
 
12
- for word in text1.ents:
13
- raw_text = raw_text.replace(word.text,"<b style='color:orange'>" + word + "</b>")
14
- raw_text = raw_replace("\n","<br>")
15
-
16
- st.markdown(raw_text)
17
 
 
6
  NER = spacy.load("en_core_web_sm")
7
  st.title('Entity Extraction')
8
 
9
+ def prediction(raw_text):
10
+ text1= NER(raw_text)
11
+ print("List wise NERs:")
12
+ print("------------------")
13
+ print(f"{'Text' : <10}{'NER' : >10}")
14
+ for word in text1.ents:
15
+ print(word.text,"\t\t",word.label_)
16
+ print()
17
+ print("------------------")
18
+ print("NERs in the sentence:")
19
+ return displacy.render(text1,style="ent")
20
 
21
+ 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.
22
+ 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.
23
+ 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. """
24
+
25
+ st.markdown(prediction(raw_text))
26