-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.py
22 lines (17 loc) · 1005 Bytes
/
app.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
from PIL import Image
import streamlit as st
st.set_page_config(
page_title="Hello",
page_icon="👋",
)
st.write("# Welcome to DietDynamo!👋")
st.sidebar.success("Select a recommendation app.")
st.markdown(
"""
DietDynamo is an innovative diet recommendation system powered by advanced algorithms and personalized data analysis.
It utilizes cutting-edge technology to provide tailored dietary plans, taking into account factors such as individual preferences, health goals, lifestyle, and even real-time data like activity levels and metabolic rates.
With its dynamic approach, DietDynamo empowers users to make informed choices and achieve sustainable results on their journey towards better health and nutrition.
A diet recommendation web application using content-based approach with Scikit-Learn, FastAPI and Streamlit.
You can find more details and the whole project on my [repo](https://github.com/jagadeshchilla/personalized-diet-recommendation).
"""
)