Spaces:
Runtime error
Runtime error
small fix
Browse files
app.py
CHANGED
@@ -25,7 +25,7 @@ def load_data():
|
|
25 |
df.to_pickle("df_dashboard.pkl") # TODO
|
26 |
except Exception as e:
|
27 |
warn("Could not load data from feature store (most likely due to Port issues with Hopsworks). Trying to load same data that is stored with the model. Full exception:")
|
28 |
-
warn(e)
|
29 |
|
30 |
# Load model including the generated images and evaluation scores
|
31 |
mr = project.get_model_registry()
|
|
|
25 |
df.to_pickle("df_dashboard.pkl") # TODO
|
26 |
except Exception as e:
|
27 |
warn("Could not load data from feature store (most likely due to Port issues with Hopsworks). Trying to load same data that is stored with the model. Full exception:")
|
28 |
+
warn(str(e))
|
29 |
|
30 |
# Load model including the generated images and evaluation scores
|
31 |
mr = project.get_model_registry()
|