Commit
·
d287ef6
1
Parent(s):
23d9516
turn into float
Browse files
app.py
CHANGED
@@ -93,7 +93,7 @@ def predict(
|
|
93 |
# generate map
|
94 |
plot = filter_map(output["predicted_uhi_index"], longitude, latitude)
|
95 |
|
96 |
-
return output["predicted_uhi_index"] , output["uhi_status"], output["feature_contributions"], plot
|
97 |
|
98 |
def load_examples(csv_file):
|
99 |
'''
|
|
|
93 |
# generate map
|
94 |
plot = filter_map(output["predicted_uhi_index"], longitude, latitude)
|
95 |
|
96 |
+
return float(output["predicted_uhi_index"]) , output["uhi_status"], output["feature_contributions"], plot
|
97 |
|
98 |
def load_examples(csv_file):
|
99 |
'''
|