import streamlit as st
# Page configuration
st.set_page_config(
page_title="HomePage",
page_icon="🚀",
layout="wide"
)
# Global CSS for consistent styling
st.markdown("""
""", unsafe_allow_html=True)
# Render the title
st.markdown('
Life Cycle of ML💡
', unsafe_allow_html=True)
# Render the steps layout
st.markdown(
"""
1. Problem Statement
2. Data Collection
3. Simple EDA
4. Data Preprocessing
5. EDA
6. Feature Engineering
7. Model Training
8. Model Testing
9. Model Deployment
10. Monitoring
""",
unsafe_allow_html=True
)