srbdni commited on
Commit
30b6161
1 Parent(s): db04149

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +7 -0
app.py CHANGED
@@ -53,6 +53,13 @@ def annotate(text, st_analyze_results, st_entities):
53
  tokens.append(text[res.end:])
54
  return tokens
55
 
 
 
 
 
 
 
 
56
 
57
  st.set_page_config(page_title='Student Name Detector (English)', layout='wide')
58
 
 
53
  tokens.append(text[res.end:])
54
  return tokens
55
 
56
+ hide_streamlit_style = """
57
+ <style>
58
+ #MainMenu {visibility: hidden;}
59
+ footer {visibility: hidden;}
60
+ </style>
61
+ """
62
+ st.markdown(hide_streamlit_style, unsafe_allow_html=True)
63
 
64
  st.set_page_config(page_title='Student Name Detector (English)', layout='wide')
65