File size: 1,059 Bytes
b3005f8 7234ab5 d8d58f7 431ca06 d8d58f7 385b1f2 d8d58f7 385b1f2 d8d58f7 |
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 29 30 31 32 |
import streamlit as st
# Page title
st.set_page_config(page_title="Chris Capobianco's Profile", page_icon=':rocket:', layout='wide')
home = st.Page('Home.py', title = 'Home')
document_classification = st.Page('projects/01_Document_Classifier.py', title='Document Classifier')
movie_recommendation = st.Page('projects/02_Movie_Recommendation.py', title='Movie Recommendation')
# weather_classification = st.Page('projects/04_Weather_Classification.py', title='Weather Classification')
stock_market = st.Page('projects/05_Stock_Market.py', title='Stock Market Forecast')
generative_music = st.Page('projects/06_Generative_Music.py', title='Generative Music')
llm_fine_tune = st.Page('projects/07_LLM_Fine_Tuned.py', title='Fine Tuned LLM')
pg = st.navigation(
{
'Home': [
home
],
'Projects': [
document_classification,
movie_recommendation,
# weather_classification,
stock_market,
generative_music,
llm_fine_tune
]
}
)
pg.run()
|