Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -14,9 +14,9 @@ import pickle
|
|
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)
|
|
|
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)
|