Update app.py
Browse files
app.py
CHANGED
|
@@ -6,7 +6,7 @@ import numpy as np
|
|
| 6 |
# -----------------------------------
|
| 7 |
# Load trained PUE artifact
|
| 8 |
# -----------------------------------
|
| 9 |
-
artifact = joblib.load("
|
| 10 |
|
| 11 |
FEATURES = artifact["features"] # must match list below
|
| 12 |
ride_model = artifact["ride_model"]
|
|
@@ -81,7 +81,7 @@ app = gr.Interface(
|
|
| 81 |
gr.Number(label="Total Rides", value=15),
|
| 82 |
],
|
| 83 |
outputs=gr.JSON(label="Prediction"),
|
| 84 |
-
title="Personalized User Experience
|
| 85 |
description=(
|
| 86 |
"Personalized ride recommendations based purely on user behavior "
|
| 87 |
"and real-time context. Pricing and demand signals are intentionally excluded."
|
|
|
|
| 6 |
# -----------------------------------
|
| 7 |
# Load trained PUE artifact
|
| 8 |
# -----------------------------------
|
| 9 |
+
artifact = joblib.load("pue_artifact_v1.joblib")
|
| 10 |
|
| 11 |
FEATURES = artifact["features"] # must match list below
|
| 12 |
ride_model = artifact["ride_model"]
|
|
|
|
| 81 |
gr.Number(label="Total Rides", value=15),
|
| 82 |
],
|
| 83 |
outputs=gr.JSON(label="Prediction"),
|
| 84 |
+
title="Personalized User Experience",
|
| 85 |
description=(
|
| 86 |
"Personalized ride recommendations based purely on user behavior "
|
| 87 |
"and real-time context. Pricing and demand signals are intentionally excluded."
|