Spaces:
Runtime error
Runtime error
Commit
·
dbc0b49
1
Parent(s):
de8d0db
debug
Browse files
app.py
CHANGED
@@ -205,8 +205,7 @@ def sthlm(streetName, area, number, sqm, rooms, monthlyFee, monthlyCost, floor,
|
|
205 |
df = xgbFix(df)
|
206 |
|
207 |
pricePred = xgboostPred(df)
|
208 |
-
explanations = dates.values()
|
209 |
-
|
210 |
result = []
|
211 |
for i, pred in enumerate(pricePred):
|
212 |
explanation = explanations[i]
|
|
|
205 |
df = xgbFix(df)
|
206 |
|
207 |
pricePred = xgboostPred(df)
|
208 |
+
explanations = list(dates.values())
|
|
|
209 |
result = []
|
210 |
for i, pred in enumerate(pricePred):
|
211 |
explanation = explanations[i]
|