-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.py
291 lines (229 loc) · 11 KB
/
index.py
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
# -*- coding: utf-8 -*-
# import dash-core, dash-html, dash io, bootstrap
from dash import html
from dash import dcc, dash_table
from dash.dependencies import Input, Output, State
from PIL import Image
# Dash Bootstrap components
import dash_bootstrap_components as dbc
import pandas as pd
import plotly.express as px
import base64
import io
# Import custom data.py
from data import *
# Import app
from app import app
# Import server for deployment
from app import srv as server
# the style arguments for the sidebar. We use position:fixed and a fixed width
SIDEBAR_STYLE = {
"position": "fixed",
"top": 0,
"left": 0,
"bottom": 0,
"width": "16rem",
"padding": "2rem 1rem",
"background-color": "#f8f9fa",
}
# the styles for the main content position it to the right of the sidebar and
# add some padding.
CONTENT_STYLE = {
"margin-left": "18rem",
"margin-right": "2rem",
"padding": "2rem 1rem",
}
logo1=Image.open("assets/logo2.png")
sidebar = html.Div(
[
#html.H2("AI MATCH", className="display-5"),
html.Img(src=logo1, height="200",width="230"),
html.H2("Data Explorer", className="display-5"),
html.Hr(),
#Initialisation de la barre laterale pour la navigation
dbc.Nav(
[dbc.NavLink("Home", href="/", active="exact")],
vertical=True,
pills=True,
),
html.Hr(),
dbc.Nav(
[
dbc.NavLink("Analyse", href="/Analyse", active="exact"),
dbc.NavLink("Profils types des participants", href="/Profiles", active="exact")
],
vertical=True,
pills=True,
),
html.Hr(),
html.H2("Machine Learning Analysis", className="lead"),
dbc.Nav(
[
dbc.NavLink("Projections and Regression", href="/projection", active="exact"),
dbc.NavLink("Tester vos données !", href='/tester', active='exact')
],
vertical=True,
pills=True,
),
],
style=SIDEBAR_STYLE,
)
content = html.Div(id="page-content", style=CONTENT_STYLE)
# Sidebar layout
app.layout = html.Div([dcc.Location(id="url"), sidebar, content])
logo=Image.open("assets/logo.png")
#Fonction callback pour le fonctionnement de la barre laterale
@app.callback(Output("page-content", "children"), [Input("url", "pathname")])
def render_page_content(pathname):
if pathname == '/':
return [html.Div([dcc.Markdown('''
### TROUVER UNE PERSONNE PARFAITEMENT COMPATIBLE
Cette application est un projet de Easy Date réalisé par [Haidara Fatimetou, KIEMDE Christelle, DUBRULLE Pierre]
à l'aide de Dash de Plotly,
les composants Dash Bootstrap de faculty.ai, Pandas,et des fonctions personnalisées.
Easy Date est une société d'événementiel qui organise des speed dating.
Pour s’inscrire, une personne doit remplir un formulaire avec différentes
informations sur elle et ses attentes. L’entreprise récolte ainsi les données et
organise différentes vagues de speed dating.
Lors d’une session, un participant rencontre plusieurs personnes. A l’issue de
chaque rencontre, il décide si Oui/Non la personne veut revoir un ou des
coups de cœur.
Le problème, c’est le faible taux de match qui fait perdre beaucoup de temps
à l’entreprise et donc de l’argent.
L’équipe de data scientist de l’entreprise doit donc réfléchir à un modèle
permettant de prédire si deux personnes vont matcher selon le formulaire
complété préalablement de la rencontre.
Cela fait des mois qu’ils planchent sur le projet, ils ont déjà calculé un score de
similarité entre deux participants en se basant sur leurs réponses aux
questionnaires.
Cependant, ce score ne semble pas fiable et l’entreprise
souhaiterait un modèle de scoring plus performant pour prédire si l’amour va
opérer entre deux personnes.
C’est la raison pour laquelle le projet AI match a vu le jour !
''')],className='home',style={'text-align':'center'}),
html.Div(html.Img(src=logo), style={'text-align':'center'}),
]
elif pathname == '/Analyse':
return [html.Div([
#Graphes recuperes avec les fonctions
dbc.Row(dbc.Col(html.H3(children='Analyse', style={'text-align':'center', 'font-size':'100px','font-family':'nunito','background-color':'red', 'background-image':'conic-gradient(#f3ec78, #af4261)', 'background-size':'100%','background-repeat':'repeat','-webkit-background-clip':'text','-webkit-text-fill-color':'transparent','-moz-background-clip':'text', '-moz-text-fill-color':'transparent', 'font-weight':'900'}))),
dcc.Graph(
figure=age()
),
dcc.Graph(
figure = match_genre()
),
dcc.Graph(
figure = goout()
),
dcc.Graph(
figure = activite()
),
dcc.Graph(
figure = income()
)
])]
# Creation de la page profils types
elif pathname == '/Profiles':
return [html.Div(children=[
html.H1(children='Profils types des participants', style={'text-align':'center', 'font-size':'100px','font-family':'nunito','background-color':'red', 'background-image':'conic-gradient(#f3ec78, #af4261)', 'background-size':'100%','background-repeat':'repeat','-webkit-background-clip':'text','-webkit-text-fill-color':'transparent','-moz-background-clip':'text', '-moz-text-fill-color':'transparent', 'font-weight':'900'}),
html.Div(children=[
html.Img(src='assets/profil.png', style={'position':'relative', 'top':'200px', 'height':'100px'}),
html.H1(children='27 ans', style={'position':'relative','left':'150px','top':'100px', 'font-size':'25px'}),
html.H1(children='Études de finance', style={'position':'relative','left':'150px','top':'105px','font-size':'25px'}),
html.H1(children='Caucasien', style={'position':'relative','left':'150px','top':'110px','font-size':'25px'}),
html.H1(children='Ingénieur', style={'position':'relative','left':'150px','top':'115px','font-size':'25px'}),
html.H1(children='46 274$/mois', style={'position':'relative','left':'150px','top':'120px','font-size':'25px'}),
html.H1(children='Aime le sport/les livres/les films/la musique', style={'position':'relative','left':'150px','top':'125px','font-size':'25px'}),
html.H1(children='1 date/mois', style={'position':'relative','left':'150px','top':'130px','font-size':'25px'}),
html.H1(children='2 sorties/semaine', style={'position':'relative','left':'150px','top':'135px','font-size':'25px'})
], style={'float':'left', 'width':'40%'}),
html.Div(children=[
html.Img(src='assets/femelle.png', style={'position':'relative', 'top':'200px', 'height':'100px'}),
html.H1(children='26 ans', style={'position':'relative','left':'150px','top':'100px','font-size':'25px'}),
html.H1(children='Études de finance', style={'position':'relative','left':'150px','top':'105px','font-size':'25px'}),
html.H1(children='Sud-américain/Hispanique', style={'position':'relative','left':'150px','top':'110px','font-size':'25px'}),
html.H1(children='Ingénieur', style={'position':'relative','left':'150px','top':'115px','font-size':'25px'}),
html.H1(children='44 577$/mois', style={'position':'relative','left':'150px','top':'120px','font-size':'25px'}),
html.H1(children='Aime les diners/les musées/les films/les arts', style={'position':'relative','left':'150px','top':'125px','font-size':'25px'}),
html.H1(children='1 date/mois', style={'position':'relative','left':'150px','top':'130px','font-size':'25px'}),
html.H1(children='2 sorties/semaine', style={'position':'relative','left':'150px','top':'135px','font-size':'25px'})
], style={'float':'left','width':'40%'})
], style={'position':'absolute', 'top':'10px','left':'290px', 'width':'90%'})]
#Page pour envoyer un fichier csv
elif pathname == '/tester':
return [html.Div([
dcc.Upload(
id='upload-data',
children=html.Div([
'Drag and Drop or ',
html.A('Select Files')
]),
style={
'width': '100%',
'height': '60px',
'lineHeight': '60px',
'borderWidth': '1px',
'borderStyle': 'dashed',
'borderRadius': '5px',
'textAlign': 'center',
'margin': '10px'
},
# Allow multiple files to be uploaded
multiple=True
),
html.Div(id='output-data-upload'),
])]
else:
# If the user tries to reach a different page, return a 404 message
return dbc.Jumbotron(
[
html.H1("404: Not found", className="text-danger"),
html.Hr(),
html.P(f"The pathname {pathname} was not recognised..."),
]
)
#focntions pour le fichier
def parse_contents(contents, filename, date):
content_type, content_string = contents.split(',')
decoded = base64.b64decode(content_string)
try:
#decodage du fichier
if 'csv' in filename:
df = pd.read_csv(
io.StringIO(decoded.decode('utf-8')), sep=';', on_bad_lines='skip')
except Exception as e:
print(e)
return html.Div([
"Une erreur s'est produite."
])
#fonction retourne un data_table avec les donnees du fichier
return html.Div([
html.H5(filename),
dash_table.DataTable(
df.to_dict('records'),
[{'name': x, 'id': x} for x in df.columns]
),
html.Hr(), # horizontal line
#Eviter les bugs d'affichages notamment en largeur
html.Div('Raw Content'),
html.Pre(contents[0:500] + '...', style={
'whiteSpace': 'pre-wrap',
'wordBreak': 'break-all'
})
])
#fonciton callback pour déposer le fichier
@app.callback(Output('output-data-upload', 'children'),
Input('upload-data', 'contents'),
State('upload-data', 'filename'),
State('upload-data', 'last_modified'))
def update_output(list_of_contents, list_of_names, list_of_dates):
if list_of_contents is not None:
children = [
parse_contents(c, n, d) for c, n, d in
zip(list_of_contents, list_of_names, list_of_dates)]
return children
# Call app server
if __name__ == '__main__':
# set debug to false when deploying app
app.run_server(debug=True)