matsammut commited on
Commit
62e17b3
·
verified ·
1 Parent(s): 197ffb2

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +4 -4
app.py CHANGED
@@ -2,12 +2,12 @@ import gradio as gr
2
  import joblib
3
 
4
  # Load your saved model
5
- # model = joblib.load("ann_model.joblib")
6
 
7
  # # Define the prediction function
8
- def predict(age, hours, education, capital_gain, capital_loss):
9
- # features = [[age, hours, education, capital_gain, capital_loss]]
10
- # prediction = model.predict(features)
11
  prediction = 1
12
  return "Income >50K" if prediction == 1 else "Income <=50K"
13
 
 
2
  import joblib
3
 
4
  # Load your saved model
5
+ model = joblib.load("ann_model.joblib")
6
 
7
  # # Define the prediction function
8
+ def predict(age, workclass, education, marital_status, occupation, relationship, race, gender, capital_gain, capital_loss, hours_per_week, native_country):
9
+ features = [[(age, workclass, education, marital_status, occupation, relationship, race, gender, capital_gain, capital_loss, hours_per_week, native_country]]
10
+ prediction = model.predict(features)
11
  prediction = 1
12
  return "Income >50K" if prediction == 1 else "Income <=50K"
13