atdokmeci commited on
Commit
d6cc3d8
·
verified ·
1 Parent(s): 8028ab5

Update src/streamlit_app.py

Browse files
Files changed (1) hide show
  1. src/streamlit_app.py +1 -1
src/streamlit_app.py CHANGED
@@ -7,7 +7,7 @@ st.title('Handwritten Digit Recognizer')
7
 
8
  # Load the model
9
  try:
10
- model = joblib.load('digit_rf_model.joblib')
11
  except Exception as e:
12
  st.error(f"Error loading model: {e}")
13
 
 
7
 
8
  # Load the model
9
  try:
10
+ model = joblib.load('src/digit_rf_model.joblib')
11
  except Exception as e:
12
  st.error(f"Error loading model: {e}")
13