Spaces:
Sleeping
Sleeping
File size: 12,745 Bytes
41173b4 d0bb838 41173b4 8724d8b 41173b4 e3c8762 41173b4 25272b8 3a4e096 41173b4 8724d8b a53f165 a729a18 8724d8b a53f165 a729a18 d0bb838 823be8e d0bb838 a729a18 8724d8b 4b0e12e 31c70a6 4b0e12e 31c70a6 4b0e12e 31c70a6 4b0e12e d0bb838 4b0e12e d0bb838 4b0e12e d0bb838 4b0e12e 25272b8 4b0e12e 25272b8 4b0e12e d0bb838 4b0e12e d0bb838 4b0e12e d0bb838 4b0e12e d0bb838 4b0e12e d0bb838 4b0e12e d0bb838 4b0e12e d0bb838 4b0e12e d0bb838 4b0e12e d0bb838 823be8e 4b0e12e 823be8e 4b0e12e 823be8e 4b0e12e 823be8e 26485d2 823be8e 26485d2 823be8e 26485d2 9889912 823be8e 31c70a6 823be8e 9889912 823be8e 9889912 823be8e 9889912 823be8e 9889912 823be8e 26485d2 823be8e bd7b6e0 823be8e 26485d2 823be8e a729a18 7214c18 41173b4 7214c18 41173b4 8724d8b 31c70a6 7214c18 a53f165 a729a18 a53f165 41173b4 31c70a6 a53f165 8724d8b 7214c18 a729a18 7214c18 d0bb838 7214c18 31c70a6 41173b4 |
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 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 |
import os
import plotly.express as px
import plotly.graph_objects as go
import pandas as pd
from dash import Dash, html, dcc, Input, Output, callback, dash_table
import plotly.express as px
import numpy as np
from plotly.subplots import make_subplots
import core
df = pd.read_csv('https://raw.githubusercontent.com/plotly/datasets/master/gapminder_unfiltered.csv')
debug = False
external_stylesheets = ['https://codepen.io/chriddyp/pen/bWLwgP.css']
app = Dash(__name__, external_stylesheets=external_stylesheets)
app.layout = html.Div([
dcc.Location(id='url', refresh=False),
html.Div(id='page-content')
], style={
'background-color': '#333', # Dark background color
'color': '#fff', # Text color
'min-height': '100vh', # Ensure it covers the full viewport height
'padding': '20px' # Add some padding
})
server = app.server
raw_wine_similarity_df = pd.read_csv('data/sogrape_wine.csv')
raw_wine_similarity_df = raw_wine_similarity_df.iloc[:3, :]
wine_similarity_df = pd.read_csv('data/wine_similarity.csv')
wine_list = wine_similarity_df['NAME'].unique()
# wine_list.sort()
geo = pd.read_csv('data/processed_wineyards.csv')
wine_regions=list(geo['Region'].unique()) + ['all']
wine_country = list(geo['Country'].unique()) + ['all']
# local_type = list(geo['LOCAL TYPE'].unique()) + ['all']
user_rating_df = pd.read_csv('data/simulated_ratings.csv')
user_rating_df.set_index('user', inplace=True)
user_rating_df['user'] = user_rating_df.index
user_ids = user_rating_df['user']
raw_ratings = pd.read_csv('data/raw_simulated_ratings.csv')
# crop to 5 rows and 7 columns
raw_ratings = raw_ratings.iloc[:5, :7]
TEMPORARY_WINE_RECOMMENDATION_FORM_INFO = {}
## Layout ##
dashboard_layout = html.Div([
html.H1(children='Wineyards around the world', style={'textAlign': 'center', 'color': '#fff', 'padding': '20px'}),
html.Div(
[
html.Div(
[
html.H4(children='Country', style={'textAlign': 'center', 'color': '#fff'}),
dcc.Dropdown(wine_country, wine_country[-1], id='dropdown-wc', style={'color': '#000'}),
], className='six columns', style={'padding': '10px'}
),
html.Div(
[
html.H4(children='Region', style={'textAlign': 'center', 'color': '#fff'}),
dcc.Dropdown(['all'], 'all', id='dropdown-wr', style={'color': '#000'}),
], className='six columns', style={'padding': '10px'}
)
], className='row', style={'background-color': '#444', 'border-radius': '10px', 'margin': '10px'}),
dcc.Graph(id='world-map-fig', style={'margin': '20px'}),
html.Div(
[
html.Div(
[
html.H4(children='Wine Recommender', style={'textAlign': 'center', 'color': '#fff'}),
dcc.Dropdown(wine_list, wine_list[0], id='dropdown-selection', style={'color': '#000'}),
html.P(id='wine-recommendation', style={'textAlign': 'center', 'color': '#fff'}),
], className='three columns', style={'padding': '10px'}
),
html.Div(
[
html.P(children='Data Example', style={'textAlign': 'left', 'color': '#fff'}),
dash_table.DataTable(
data=raw_wine_similarity_df.to_dict('records'),
columns=[{'id': c, 'name': c} for c in raw_wine_similarity_df.columns],
style_header={'backgroundColor': '#444', 'color': '#fff'},
style_cell={'backgroundColor': '#333', 'color': '#fff'}
)
], className='nine columns', style={'padding': '10px'}
)
], className='row', style={'background-color': '#444', 'border-radius': '10px', 'margin': '10px'}),
html.H4(children="Wine Recommender based on users' feedback", style={'textAlign': 'center', 'color': '#fff', 'padding': '20px'}),
html.Div(
[
html.Div(
[
dcc.Dropdown(user_ids, user_ids[0], id='dropdown-selection-user', style={'color': '#000'}),
html.P(id='wine-recommendation-from-user', style={'textAlign': 'center', 'color': '#fff'}),
], className='six columns', style={'padding': '10px'}
),
html.Div(
[
html.P(children='Data Example', style={'textAlign': 'left', 'color': '#fff'}),
dash_table.DataTable(
data=raw_ratings.to_dict('records'),
columns=[{'id': c, 'name': c} for c in raw_ratings.columns],
style_header={'backgroundColor': '#444', 'color': '#fff'},
style_cell={'backgroundColor': '#333', 'color': '#fff'}
)
], className='six columns', style={'padding': '10px'}
),
], className='row', style={'background-color': '#444', 'border-radius': '10px', 'margin': '10px'}),
html.H4(children="Wine Preferences Form", style={'textAlign': 'center', 'color': '#fff', 'padding': '20px'}),
html.Div(
[
html.Div(
[
dcc.Dropdown(wine_list, wine_list[0], id='dropdown-selection-wine-form', style={'color': '#000'}),
dcc.Input(id='input-wine-rating', type='number', placeholder='Enter wine rating', min=1, max=5, style={'margin-top': '10px'}),
], className='six columns', style={'padding': '10px'}
),
html.Div(
[
html.Button('Submit', id='submit-button', n_clicks=0, style={'margin-top': '10px', 'background-color': '#444', 'color': '#fff'}),
], className='six columns', style={'padding': '10px'}
),
], className='row', style={'background-color': '#444', 'border-radius': '10px', 'margin': '10px'}),
html.Div(id='recommended-wine-rating-info', style={'textAlign': 'center', 'color': '#fff', 'padding': '10px'}),
html.P(id='recommend-wine-from-form-text', style={'textAlign': 'center', 'color': '#fff'}),
html.Div(
[
html.Button('Reset', id='recommend-wine-from-form-reset', n_clicks=0, style={'margin': '10px', 'background-color': '#444', 'color': '#fff'}),
html.Button('Recommend Wine', id='recommend-wine-from-form', n_clicks=0, style={'margin': '10px', 'background-color': '#444', 'color': '#fff'}),
], style={'textAlign': 'center'}
),
html.Div(id='recommended-wine-form-output', style={'textAlign': 'center', 'color': '#fff', 'padding': '10px'}),
], style={
'background-image': 'url("/assets/background.jpg")',
'background-size': 'cover',
'font-family': 'Fantasy',
'color': '#999',
'padding': '20px'
})
@app.callback(
Output('recommend-wine-from-form-reset', 'n_clicks'),
Input('recommend-wine-from-form-reset', 'n_clicks'),
)
def reset_form(n_clicks):
if n_clicks > 0:
TEMPORARY_WINE_RECOMMENDATION_FORM_INFO.clear()
return 0
@app.callback(
Output('recommended-wine-rating-info', 'children'),
Output('submit-button', 'n_clicks'),
Output('recommend-wine-from-form-text', 'children'),
Input('submit-button', 'n_clicks'),
Input('dropdown-selection-wine-form', 'value'),
Input('input-wine-rating', 'value'),
Input('recommend-wine-from-form-text', 'children'),
)
def update_output(n_clicks, wine_name, rating, text_value):
if n_clicks > 0:
print(f"Text Value: {text_value}")
TEMPORARY_WINE_RECOMMENDATION_FORM_INFO[wine_name] = rating
if not text_value:
text_value = "|"
text_value += f"{wine_name}: {rating} | "
return f'You rated {wine_name} with a score of {rating}', 0, text_value
return '', 0, text_value
@app.callback(
Output('recommended-wine-form-output', 'children'),
Output('recommend-wine-from-form', 'n_clicks'),
Input('recommend-wine-from-form', 'n_clicks'),
)
def recommend_wine_from_form(n_clicks):
if n_clicks > 0:
user = "temporary_user"
user_rating_df.loc[user] = TEMPORARY_WINE_RECOMMENDATION_FORM_INFO
user_rating_df.fillna(0, inplace=True)
user_rating_df['user'] = user_rating_df.index
user_rating_df['cluster'] = core.get_most_similar_user_clust(user_rating_df, user)
wine_recommendation_from_user = core.recommend_wine_from_users(user_rating_df, user, 3)
wine_recommendation_from_user = f"Based on user form, we recommend: "+"; ".join(wine_recommendation_from_user)
return wine_recommendation_from_user, 0
return '', 0
@app.callback(
Output('dropdown-wr', 'options'),
Input('dropdown-wc', 'value')
)
def set_wine_type_options(selected_wine_type):
# Return the options based on the selected wine country
pattern = r'.*' if selected_wine_type == 'all' else rf'{selected_wine_type}'
return list(geo[geo['Country'].str.match(pattern, na=False)]['Region'].unique()) + ['all']
wiki_layout = html.Div([
dcc.Link('Dashboard', href='/'),
html.H1('About this project'),
html.Div([
html.Div([
html.H3('What is this project about?'),
html.P('We are a group of 4 Computer Science Engineering Students with a solid Artificial Intelligence background.'),
html.P('This project aims to showcase AI applications for improving Wine Tourism for SOGRAPE.'),
html.H3('\'Bout us'),
html.Img(src='/assets/tourdevino_logo.webp', style={'width': '40%', 'height': 'auto', 'display': 'block', 'margin-left': 'auto', 'margin-right': 'auto'}),
html.P('This project was developed by a team of 4, in the context of the SOGRAPE 2024 hackathon.'),
html.P('The team members are:'),
html.H4('Rui Melo'),
html.H4('André Catarino'),
html.H4('Dinis Costa'),
html.H4('Paulo Fidalgo'),
], className='six columns'),], className='row'),
],
style={'background-color': '#333', 'font-family': 'Fantasy', 'color': '#999', 'padding': '10px'}
)
# Update the index
@callback(Output('page-content', 'children'), Input('url', 'pathname'))
def display_page(pathname):
if pathname == '/':
return dashboard_layout
elif pathname == '/wiki':
return wiki_layout
else:
return '404'
# You could also return a 404 "URL not found" page here
@app.callback(
Output('wine-recommendation', 'children'),
Input('dropdown-selection', 'value')
)
def update_recommendation(value):
if value:
recommended_wines = core.get_top_5_similar_wines(value, wine_similarity_df)[1:]
return f"Based on ´{value}´, we recommend: "+"; ".join(recommended_wines)
return ''
@app.callback(
Output('world-map-fig', 'figure'),
Output('wine-recommendation-from-user', 'children'),
Input('dropdown-wr', 'value'),
Input('dropdown-wc', 'value'),
Input('dropdown-selection-user', 'value')
)
def update_graph(wr,wc, user_value):
## Wine Recommendation from users feedback
wine_recommendation_from_user = core.recommend_wine_from_users(user_rating_df, user_value, 3)
wine_recommendation_from_user = f"Based on user information, we recommend: "+"; ".join(wine_recommendation_from_user)
### World Map of wineyards ###
geo_df = pd.read_csv('data/processed_wineyards.csv')
wr = r'.*' if wr == 'all' else rf'{wr}'
wc = r'.*' if wc == 'all' else rf'{wc}'
geo_df = geo_df[geo_df['Region'].str.contains(wr, case=False, na=False, regex=True) & geo_df['Country'].str.contains(wc, case=False, na=False, regex=True)]
world_map_fig = px.scatter_map(geo_df,
lat=geo_df['coord_x'],
lon=geo_df['coord_y'],
hover_name=geo_df['name'],
zoom=4,
hover_data={
'IsTouristic': True,
'Wine Type': True,
'Country': True,
'Region': True,
'Address': True,
},
title='Wineyards around the world',
)
world_map_fig.update_layout(height=800, width=1200)
return world_map_fig, wine_recommendation_from_user
if __name__ == "__main__":
app.run_server(host="0.0.0.0", port="8050", debug=debug) |