matsammut commited on
Commit
2aca552
·
verified ·
1 Parent(s): b9cb41f

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +135 -39
app.py CHANGED
@@ -180,47 +180,143 @@ def hbdscan_tranform(df_transformed):
180
 
181
  # Shared inputs
182
  ann_inputs = [
183
- gr.Slider(18, 90, step=1, label="Age"),
184
- gr.Dropdown(["Male", "Female"], label="Gender"),
185
- gr.Dropdown(["Private", "Self-emp-not-inc", "Self-emp-inc", "Federal-gov", "Local-gov", "State-gov", "Without-pay", "Never-worked"], label="Workclass"),
186
- gr.Dropdown(["Preschool", "1st-4th", "5th-6th", "7th-8th", "9th", "10th", "11th", "12th", "HS-grad", "Some-college", "Assoc-voc", "Assoc-acdm", "Bachelors", "Masters", "Doctorate", "Prof-school"], label="Education"),
187
- gr.Dropdown(["Married-civ-spouse", "Divorced", "Never-married", "Separated", "Widowed", "Married-spouse-absent", "Married-AF-spouse"], label="Marital Status"),
188
- gr.Dropdown(["Tech-support", "Craft-repair", "Other-service", "Sales", "Exec-managerial", "Prof-specialty", "Handlers-cleaners", "Machine-op-inspct", "Adm-clerical", "Farming-fishing", "Transport-moving", "Priv-house-serv", "Protective-serv", "Armed-Forces"], label="Occupation"),
189
- gr.Dropdown(["Wife", "Husband", "Own-child", "Not-in-family", "Other-relative", "Unmarried"], label="Relationship"),
190
- gr.Dropdown(["White", "Black", "Asian-Pac-Islander", "Amer-Indian-Eskimo", "Other"], label="Race"),
191
- gr.Slider(0, 100000, step=100, label="Capital Gain"),
192
- gr.Slider(0, 5000, step=50, label="Capital Loss"),
193
- gr.Slider(1, 60, step=1, label="Hours Per Week"),
194
- gr.Dropdown(["United-States", "Canada", "Mexico", "Other"], label="Native Country")
195
- ]
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
196
  rf_inputs = [
197
- gr.Slider(18, 90, step=1, label="Age"),
198
- gr.Dropdown(["Male", "Female"], label="Gender"),
199
- gr.Dropdown(["Private", "Self-emp-not-inc", "Self-emp-inc", "Federal-gov", "Local-gov", "State-gov", "Without-pay", "Never-worked"], label="Workclass"),
200
- gr.Dropdown(["Preschool", "1st-4th", "5th-6th", "7th-8th", "9th", "10th", "11th", "12th", "HS-grad", "Some-college", "Assoc-voc", "Assoc-acdm", "Bachelors", "Masters", "Doctorate", "Prof-school"], label="Education"),
201
- gr.Dropdown(["Married-civ-spouse", "Divorced", "Never-married", "Separated", "Widowed", "Married-spouse-absent", "Married-AF-spouse"], label="Marital Status"),
202
- gr.Dropdown(["Tech-support", "Craft-repair", "Other-service", "Sales", "Exec-managerial", "Prof-specialty", "Handlers-cleaners", "Machine-op-inspct", "Adm-clerical", "Farming-fishing", "Transport-moving", "Priv-house-serv", "Protective-serv", "Armed-Forces"], label="Occupation"),
203
- gr.Dropdown(["Wife", "Husband", "Own-child", "Not-in-family", "Other-relative", "Unmarried"], label="Relationship"),
204
- gr.Dropdown(["White", "Black", "Asian-Pac-Islander", "Amer-Indian-Eskimo", "Other"], label="Race"),
205
- gr.Slider(0, 100000, step=100, label="Capital Gain"),
206
- gr.Slider(0, 5000, step=50, label="Capital Loss"),
207
- gr.Slider(1, 60, step=1, label="Hours Per Week"),
208
- gr.Dropdown(["United-States", "Canada", "Mexico", "Other"], label="Native Country")
209
- ]
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
210
  hbd_inputs = [
211
- gr.Slider(18, 90, step=1, label="Age"),
212
- gr.Dropdown(["Male", "Female"], label="Gender"),
213
- gr.Dropdown(["Private", "Self-emp-not-inc", "Self-emp-inc", "Federal-gov", "Local-gov", "State-gov", "Without-pay", "Never-worked"], label="Workclass"),
214
- gr.Dropdown(["Preschool", "1st-4th", "5th-6th", "7th-8th", "9th", "10th", "11th", "12th", "HS-grad", "Some-college", "Assoc-voc", "Assoc-acdm", "Bachelors", "Masters", "Doctorate", "Prof-school"], label="Education"),
215
- gr.Dropdown(["Married-civ-spouse", "Divorced", "Never-married", "Separated", "Widowed", "Married-spouse-absent", "Married-AF-spouse"], label="Marital Status"),
216
- gr.Dropdown(["Tech-support", "Craft-repair", "Other-service", "Sales", "Exec-managerial", "Prof-specialty", "Handlers-cleaners", "Machine-op-inspct", "Adm-clerical", "Farming-fishing", "Transport-moving", "Priv-house-serv", "Protective-serv", "Armed-Forces"], label="Occupation"),
217
- gr.Dropdown(["Wife", "Husband", "Own-child", "Not-in-family", "Other-relative", "Unmarried"], label="Relationship"),
218
- gr.Dropdown(["White", "Black", "Asian-Pac-Islander", "Amer-Indian-Eskimo", "Other"], label="Race"),
219
- gr.Slider(0, 100000, step=100, label="Capital Gain"),
220
- gr.Slider(0, 5000, step=50, label="Capital Loss"),
221
- gr.Slider(1, 60, step=1, label="Hours Per Week"),
222
- gr.Dropdown(["United-States", "Canada", "Mexico", "Other"], label="Native Country")
223
- ]
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
224
 
225
  # Interfaces for each model
226
  ann_interface = gr.Interface(
 
180
 
181
  # Shared inputs
182
  ann_inputs = [
183
+ gr.Slider(18, 90, step=1, label="Age"),
184
+ gr.Dropdown(
185
+ ["Private", "Self-emp-not-inc", "Self-emp-inc", "Federal-gov",
186
+ "Local-gov", "State-gov", "Without-pay", "Never-worked"],
187
+ label="Workclass"
188
+ ),
189
+ gr.Dropdown(
190
+ ["Bachelors", "Some-college", "11th", "HS-grad", "Prof-school",
191
+ "Assoc-acdm", "Assoc-voc", "9th", "7th-8th", "12th", "Masters",
192
+ "1st-4th", "10th", "Doctorate", "5th-6th", "Preschool"],
193
+ label="Education"
194
+ ),
195
+ gr.Dropdown(
196
+ ["Married-civ-spouse", "Divorced", "Never-married", "Separated",
197
+ "Widowed", "Married-spouse-absent", "Married-AF-spouse"],
198
+ label="Marital Status"
199
+ ),
200
+ gr.Dropdown(
201
+ ["Tech-support", "Craft-repair", "Other-service", "Sales",
202
+ "Exec-managerial", "Prof-specialty", "Handlers-cleaners",
203
+ "Machine-op-inspct", "Adm-clerical", "Farming-fishing",
204
+ "Transport-moving", "Priv-house-serv", "Protective-serv",
205
+ "Armed-Forces"],
206
+ label="Occupation"
207
+ ),
208
+ gr.Dropdown(
209
+ ["Wife", "Husband", "Own-child", "Unmarried", "Other-relative", "Not-in-family"],
210
+ label="Relationship"
211
+ ),
212
+ gr.Dropdown(
213
+ ["White", "Black", "Asian-Pac-Islander", "Amer-Indian-Eskimo", "Other"],
214
+ label="Race"
215
+ ),
216
+ gr.Dropdown(
217
+ ["Male", "Female"],
218
+ label="Gender"
219
+ ),
220
+ gr.Slider(1, 60, step=1, label="Hours Per Week"),
221
+ gr.Slider(0, 100000, step=100, label="Capital Gain"),
222
+ gr.Slider(0, 5000, step=50, label="Capital Loss"),
223
+ gr.Dropdown(
224
+ ["United-States", "Other"],
225
+ label="Native Country"
226
+ )
227
+ ]
228
  rf_inputs = [
229
+ gr.Slider(18, 90, step=1, label="Age"),
230
+ gr.Dropdown(
231
+ ["Private", "Self-emp-not-inc", "Self-emp-inc", "Federal-gov",
232
+ "Local-gov", "State-gov", "Without-pay", "Never-worked"],
233
+ label="Workclass"
234
+ ),
235
+ gr.Dropdown(
236
+ ["Bachelors", "Some-college", "11th", "HS-grad", "Prof-school",
237
+ "Assoc-acdm", "Assoc-voc", "9th", "7th-8th", "12th", "Masters",
238
+ "1st-4th", "10th", "Doctorate", "5th-6th", "Preschool"],
239
+ label="Education"
240
+ ),
241
+ gr.Dropdown(
242
+ ["Married-civ-spouse", "Divorced", "Never-married", "Separated",
243
+ "Widowed", "Married-spouse-absent", "Married-AF-spouse"],
244
+ label="Marital Status"
245
+ ),
246
+ gr.Dropdown(
247
+ ["Tech-support", "Craft-repair", "Other-service", "Sales",
248
+ "Exec-managerial", "Prof-specialty", "Handlers-cleaners",
249
+ "Machine-op-inspct", "Adm-clerical", "Farming-fishing",
250
+ "Transport-moving", "Priv-house-serv", "Protective-serv",
251
+ "Armed-Forces"],
252
+ label="Occupation"
253
+ ),
254
+ gr.Dropdown(
255
+ ["Wife", "Husband", "Own-child", "Unmarried", "Other-relative", "Not-in-family"],
256
+ label="Relationship"
257
+ ),
258
+ gr.Dropdown(
259
+ ["White", "Black", "Asian-Pac-Islander", "Amer-Indian-Eskimo", "Other"],
260
+ label="Race"
261
+ ),
262
+ gr.Dropdown(
263
+ ["Male", "Female"],
264
+ label="Gender"
265
+ ),
266
+ gr.Slider(1, 60, step=1, label="Hours Per Week"),
267
+ gr.Slider(0, 100000, step=100, label="Capital Gain"),
268
+ gr.Slider(0, 5000, step=50, label="Capital Loss"),
269
+ gr.Dropdown(
270
+ ["United-States", "Other"],
271
+ label="Native Country"
272
+ )
273
+ ]
274
  hbd_inputs = [
275
+ gr.Slider(18, 90, step=1, label="Age"),
276
+ gr.Dropdown(
277
+ ["Private", "Self-emp-not-inc", "Self-emp-inc", "Federal-gov",
278
+ "Local-gov", "State-gov", "Without-pay", "Never-worked"],
279
+ label="Workclass"
280
+ ),
281
+ gr.Dropdown(
282
+ ["Bachelors", "Some-college", "11th", "HS-grad", "Prof-school",
283
+ "Assoc-acdm", "Assoc-voc", "9th", "7th-8th", "12th", "Masters",
284
+ "1st-4th", "10th", "Doctorate", "5th-6th", "Preschool"],
285
+ label="Education"
286
+ ),
287
+ gr.Dropdown(
288
+ ["Married-civ-spouse", "Divorced", "Never-married", "Separated",
289
+ "Widowed", "Married-spouse-absent", "Married-AF-spouse"],
290
+ label="Marital Status"
291
+ ),
292
+ gr.Dropdown(
293
+ ["Tech-support", "Craft-repair", "Other-service", "Sales",
294
+ "Exec-managerial", "Prof-specialty", "Handlers-cleaners",
295
+ "Machine-op-inspct", "Adm-clerical", "Farming-fishing",
296
+ "Transport-moving", "Priv-house-serv", "Protective-serv",
297
+ "Armed-Forces"],
298
+ label="Occupation"
299
+ ),
300
+ gr.Dropdown(
301
+ ["Wife", "Husband", "Own-child", "Unmarried", "Other-relative", "Not-in-family"],
302
+ label="Relationship"
303
+ ),
304
+ gr.Dropdown(
305
+ ["White", "Black", "Asian-Pac-Islander", "Amer-Indian-Eskimo", "Other"],
306
+ label="Race"
307
+ ),
308
+ gr.Dropdown(
309
+ ["Male", "Female"],
310
+ label="Gender"
311
+ ),
312
+ gr.Slider(1, 60, step=1, label="Hours Per Week"),
313
+ gr.Slider(0, 100000, step=100, label="Capital Gain"),
314
+ gr.Slider(0, 5000, step=50, label="Capital Loss"),
315
+ gr.Dropdown(
316
+ ["United-States", "Other"],
317
+ label="Native Country"
318
+ )
319
+ ]
320
 
321
  # Interfaces for each model
322
  ann_interface = gr.Interface(