AI-Decoded / app.py
eagle0504's picture
pages omitted
e9cc3da
raw
history blame
489 Bytes
import streamlit as st
st.set_page_config(
page_title="Hello",
page_icon="πŸ‘‹",
)
st.write("# Welcome to AI Decoded! πŸ‘‹")
st.sidebar.success("Select a demo above.")
st.markdown(
"""
Streamlit is an open-source app framework built specifically for
Machine Learning and Data Science projects.
- Click on `Files`, and then go to `docs/notebooks` for access of python notebooks
- For more information, go [here](https://wyn-education.streamlit.app/)
"""
)