ashhadahsan commited on
Commit
0302fc1
·
1 Parent(s): df3f55b
Files changed (1) hide show
  1. app.py +7 -1
app.py CHANGED
@@ -38,7 +38,13 @@ summarizer_option = st.selectbox(
38
  "Select Summarizer",
39
  ("Custom trained on the dataset", "t5-base", "t5-one-line-summary"),
40
  )
41
-
 
 
 
 
 
 
42
 
43
  ps = st.empty()
44
  if st.button("Process"):
 
38
  "Select Summarizer",
39
  ("Custom trained on the dataset", "t5-base", "t5-one-line-summary"),
40
  )
41
+ hide_streamlit_style = """
42
+ <style>
43
+ #MainMenu {visibility: hidden;}
44
+ footer {visibility: hidden;}
45
+ </style>
46
+ """
47
+ st.markdown(hide_streamlit_style, unsafe_allow_html=True)
48
 
49
  ps = st.empty()
50
  if st.button("Process"):