Spaces:
Sleeping
Sleeping
| 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/) | |
| """ | |
| ) | |