saritha5 commited on
Commit
4e870ab
·
1 Parent(s): 50b8cf2

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +7 -3
app.py CHANGED
@@ -5,7 +5,11 @@ 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)
 
5
 
6
  st.title('Entity Extraction')
7
 
8
+ 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."
9
+ text1= NER(raw_text)
10
+
11
+ for word in text1.ents:
12
+ st.write(word.text,word.label_)
13
+
14
+ st. write(displacy.render(text1,style="ent",jupyter=True))
15