Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -5,10 +5,11 @@ import joblib
|
|
5 |
# model = joblib.load("ann_model.joblib")
|
6 |
|
7 |
# # Define the prediction function
|
8 |
-
|
9 |
# features = [[age, hours, education, capital_gain, capital_loss]]
|
10 |
# prediction = model.predict(features)
|
11 |
-
|
|
|
12 |
|
13 |
# Create the Gradio interface
|
14 |
interface = gr.Interface(
|
|
|
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 |
|
14 |
# Create the Gradio interface
|
15 |
interface = gr.Interface(
|