|
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 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
st.set_page_config(layout="wide") |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
st.image("images/AI.jpg") |
|
st.title("AI and Data Science Examples") |
|
st.subheader("HEC Paris, 2023-2024") |
|
st.markdown("""**Course provided by Shirish C. SRIVASTAVA** <br> |
|
and developped by Hi! PARIS Engineers: *Laurène DAVID*, *Salma HOUIDI* and *Maeva N'GUESSAN*. |
|
""", unsafe_allow_html=True) |
|
|
|
|
|
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() |
|
|
|
|
|
|
|
st.markdown(" ") |
|
image_hiparis = Image.open('images/hi-paris.png') |
|
st.image(image_hiparis, width=150) |
|
url = "https://www.hi-paris.fr/" |
|
st.markdown("**The app was made in collaboration with [Hi! PARIS](%s)**" % url) |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
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", "🛒") |
|
] |
|
) |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|