Update app.py
Browse files
app.py
CHANGED
@@ -61,6 +61,13 @@ salarybracket_ga = gr.Interface(fn=salarybracket,
|
|
61 |
gr.Dropdown(dropdown_options['native_country'], label="Native Country")
|
62 |
],
|
63 |
outputs="text",
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
64 |
title="Salary Bracket Prediction",
|
65 |
description="Predicting Income Bracket Using TensorFlow",
|
66 |
theme='dark'
|
|
|
61 |
gr.Dropdown(dropdown_options['native_country'], label="Native Country")
|
62 |
],
|
63 |
outputs="text",
|
64 |
+
examples = [
|
65 |
+
[28,Private,Bachelors,13,Married-civ-spouse,Prof-specialty,Wife,Black,Female,0,0,40,Cuba],
|
66 |
+
[38,Private,Some-college,10,Divorced,Craft-repair,Own-child,White,Male,0,0,58,Poland],
|
67 |
+
[44,Private,Some-college,10,Married-civ-spouse,Transport-moving,Husband,White,Male,0,0,40,United-States],
|
68 |
+
[29,Private,HS-grad,9,Never-married,Machine-op-inspct,Own-child,Asian-Pac-Islander,Male,0,0,40,Germany],
|
69 |
+
[31,Private,HS-grad,9,Separated,Machine-op-inspct,Unmarried,White,Female,0,2238,40,United-States],
|
70 |
+
],
|
71 |
title="Salary Bracket Prediction",
|
72 |
description="Predicting Income Bracket Using TensorFlow",
|
73 |
theme='dark'
|