AstartesDominatis commited on
Commit
0e9fd1f
·
verified ·
1 Parent(s): 191e50c

Update src/streamlit_app.py

Browse files
Files changed (1) hide show
  1. src/streamlit_app.py +1 -1
src/streamlit_app.py CHANGED
@@ -9,7 +9,7 @@ st.set_page_config(page_title="RANDOM FOREST DEMO", page_icon="💼", layout="ce
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}
13
  intent_mapping = {
14
  "education": 0, "home_improvement": 1, "medical": 2,
15
  "personal": 3, "venture": 4
 
9
  model = joblib.load("src/random_forest_model1.pkl")
10
 
11
  # Category mappings (must match training time)
12
+ home_mapping = {"Own": 2, "Mortgage": 1, "Rent": 0}
13
  intent_mapping = {
14
  "education": 0, "home_improvement": 1, "medical": 2,
15
  "personal": 3, "venture": 4