portfolio / app.py
Christopher Capobianco
Add Document Classifier project
385b1f2
raw
history blame
1.06 kB
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()