Spaces:
Sleeping
Sleeping
Update src/streamlit_app.py
Browse files- src/streamlit_app.py +1 -1
src/streamlit_app.py
CHANGED
|
@@ -6,7 +6,7 @@ from datetime import datetime
|
|
| 6 |
st.set_page_config(page_title="RANDOM FOREST DEMO", page_icon="💼", layout="centered")
|
| 7 |
|
| 8 |
# Loading model
|
| 9 |
-
model = joblib.load("random_forest_model1.pkl")
|
| 10 |
|
| 11 |
# Category mappings (must match training time)
|
| 12 |
home_mapping = {"Собственник": 2, "Mortgage": 1, "Rent": 0}
|
|
|
|
| 6 |
st.set_page_config(page_title="RANDOM FOREST DEMO", page_icon="💼", layout="centered")
|
| 7 |
|
| 8 |
# Loading model
|
| 9 |
+
model = joblib.load("src/random_forest_model1.pkl")
|
| 10 |
|
| 11 |
# Category mappings (must match training time)
|
| 12 |
home_mapping = {"Собственник": 2, "Mortgage": 1, "Rent": 0}
|