Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -13,11 +13,11 @@ import pickle
|
|
13 |
# # Define the prediction function
|
14 |
def predict(age, workclass, education, marital_status, occupation, relationship, race, gender, capital_gain, capital_loss, hours_per_week, native_country):
|
15 |
features = [age, workclass, education, marital_status, occupation, relationship, race, gender, capital_gain, capital_loss, hours_per_week, native_country]
|
16 |
-
columns =
|
17 |
-
"age", "workclass", "educational-num", "marital-status", "occupation",
|
18 |
-
"relationship", "race", "gender", "capital-gain", "capital-loss",
|
19 |
-
"hours-per-week", "native-country"
|
20 |
-
df = pd.DataFrame(data=
|
21 |
fixed_features = cleaning_features(df)
|
22 |
# prediction = model.predict(features)
|
23 |
# prediction = 1
|
|
|
13 |
# # Define the prediction function
|
14 |
def predict(age, workclass, education, marital_status, occupation, relationship, race, gender, capital_gain, capital_loss, hours_per_week, native_country):
|
15 |
features = [age, workclass, education, marital_status, occupation, relationship, race, gender, capital_gain, capital_loss, hours_per_week, native_country]
|
16 |
+
columns = {
|
17 |
+
"age": age, "workclass":workclass, "educational-num":education, "marital-status":marital_status, "occupation":occupation,
|
18 |
+
"relationship":relationship, "race":race, "gender":gender, "capital-gain":capital_gain, "capital-loss":capital_loss,
|
19 |
+
"hours-per-week":hours_per_week, "native-country":native_country}
|
20 |
+
df = pd.DataFrame(data=columns)
|
21 |
fixed_features = cleaning_features(df)
|
22 |
# prediction = model.predict(features)
|
23 |
# prediction = 1
|