Ceee91 commited on
Commit
fc5d915
·
verified ·
1 Parent(s): 9698471

Update src/streamlit_app.py

Browse files
Files changed (1) hide show
  1. src/streamlit_app.py +2 -2
src/streamlit_app.py CHANGED
@@ -3,8 +3,8 @@ import joblib
3
  import numpy as np
4
 
5
  # Load the saved model and scaler
6
- model = joblib.load("medical_model.pkl")
7
- scaler = joblib.load("scaler.pkl")
8
 
9
  st.title("Medical Insurance Cost Predictor")
10
  st.write("Enter your details to estimate insurance charges.")
 
3
  import numpy as np
4
 
5
  # Load the saved model and scaler
6
+ model = joblib.load("src/medical_model.pkl")
7
+ scaler = joblib.load("src/scaler.pkl")
8
 
9
  st.title("Medical Insurance Cost Predictor")
10
  st.write("Enter your details to estimate insurance charges.")