AIandDataScienceExamples / main_page.py
dorosara's picture
Update main_page.py
6cd0a31 verified
raw
history blame contribute delete
No virus
2.85 kB
import os
import streamlit as st
import pandas as pd
import numpy as np
from st_pages import Page, show_pages
from PIL import Image
#from utils import authenticate_drive
##################################################################################
# PAGE CONFIGURATION #
##################################################################################
st.set_page_config(layout="wide")
##################################################################################
# GOOGLE DRIVE CONNEXION #
##################################################################################
# if ["drive_oauth"] not in st.session_state:
# st.session_state["drive_oauth"] = authenticate_drive()
# drive_oauth = st.session_state["drive_oauth"]
##################################################################################
# TITLE #
##################################################################################
st.image("images/AI.jpg")
st.title("AI and Data Science Examples")
st.subheader("2023-2024")
st.markdown("""**Course provided by D. SREERANJAN** <br>
and developed by *DOROSARA*.
""", unsafe_allow_html=True)
#st.markdown("in collaboration with Hi! PARIS engineers: Laurรจne DAVID, Salma HOUIDI and Maeva N'GUESSAN")
st.markdown(" ")
st.info("""**About the app**: The AI and Data Science Examples app was created to introduce students to the field of Data Science by showcasing real-life applications of AI.
It includes use cases using traditional Machine Learning algorithms on structured data, as well as Deep Learning models run on unstructured data (text, images,...).""")
st.divider()
##################################################################################
# DASHBOARD/SIDEBAR #
##################################################################################
# AI use case pages
show_pages(
[
Page("main_page.py", "Home Page", "๐Ÿ "),
Page("pages/supervised_unsupervised_page.py", "Supervised vs Unsupervised", "๐Ÿ”"),
Page("pages/timeseries_analysis.py", "Time Series Forecasting", "๐Ÿ“ˆ"),
Page("pages/sentiment_analysis.py", "Sentiment Analysis", "๐Ÿ‘"),
Page("pages/object_detection.py", "Object Detection", "๐Ÿ“น"),
Page("pages/recommendation_system.py", "Recommendation system", "๐Ÿ›’")
]
)
##################################################################################
# PAGE CONTENT #
##################################################################################