matsammut commited on
Commit
00423c4
·
verified ·
1 Parent(s): e725540

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -3
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)