Spaces:
Runtime error
Runtime error
File size: 636 Bytes
c5301d0 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 |
from datetime import date
import streamlit as st
def APP_PAGE_HEADER():
st.set_page_config(
page_title="ML Algorithms",
page_icon=":camel:",
layout="wide",
initial_sidebar_state="collapsed",
)
hide_style = """
<style>
#MainMenu {visibility: hidden;}
footer {visibility: hidden;}
</style>
"""
st.markdown(hide_style, unsafe_allow_html=True)
HEADER()
def HEADER():
today = date.today()
st.header("_Simple ML Algorithms explained in Math & Code_")
st.write(str(today))
|