Sahithi27 commited on
Commit
b5adf0d
·
verified ·
1 Parent(s): d9fb8f3

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -6,7 +6,7 @@ import numpy as np
6
  # -----------------------------------
7
  # Load trained PUE artifact
8
  # -----------------------------------
9
- artifact = joblib.load("pue_artifact.joblib")
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 (Clean, CPU)",
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."