carisackc commited on
Commit
9509ab7
·
1 Parent(s): 11b8575

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -3
app.py CHANGED
@@ -193,12 +193,12 @@ with col1:
193
 
194
  with col2:
195
  st.button('NER')
196
- st.subheader("DISEASE")
197
  genEntities(trans_df, 'DISEASE')
198
- st.subheader("CHEMICAL")
199
  genEntities(trans_df, 'CHEMICAL')
200
  #st.table(trans_df)
201
- st.subheader("NER")
202
  st.markdown(ent_html, unsafe_allow_html=True)
203
 
204
 
 
193
 
194
  with col2:
195
  st.button('NER')
196
+ st.markdown('**DISEASE**')
197
  genEntities(trans_df, 'DISEASE')
198
+ st.markdown('**CHEMICAL**')
199
  genEntities(trans_df, 'CHEMICAL')
200
  #st.table(trans_df)
201
+ st.markdown('**NER**')
202
  st.markdown(ent_html, unsafe_allow_html=True)
203
 
204