Spaces:
Sleeping
Sleeping
Update src/streamlit_app.py
Browse files- 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.")
|