Spaces:
Build error
Build error
Update src/streamlit_app.py
Browse files- src/streamlit_app.py +2 -2
src/streamlit_app.py
CHANGED
|
@@ -2,10 +2,10 @@ import streamlit as st
|
|
| 2 |
import joblib
|
| 3 |
import numpy as np
|
| 4 |
|
| 5 |
-
with open("house_model", "rb") as f:
|
| 6 |
model = joblib.load(f)
|
| 7 |
|
| 8 |
-
st.title(":blue[Smart] Property Price Estimator :house")
|
| 9 |
bedrooms = st.number_input("Bedrooms:", min_value=1, max_value=10, step=1)
|
| 10 |
bathrooms = st.number_input("Bathrooms:", min_value=1, max_value=10, step=1)
|
| 11 |
sqft_living = st.number_input("Living Area (sqft):", min_value=100, max_value=10000, step=1)
|
|
|
|
| 2 |
import joblib
|
| 3 |
import numpy as np
|
| 4 |
|
| 5 |
+
with open("src/house_model", "rb") as f:
|
| 6 |
model = joblib.load(f)
|
| 7 |
|
| 8 |
+
st.title(":blue[Smart] Property Price Estimator :house:")
|
| 9 |
bedrooms = st.number_input("Bedrooms:", min_value=1, max_value=10, step=1)
|
| 10 |
bathrooms = st.number_input("Bathrooms:", min_value=1, max_value=10, step=1)
|
| 11 |
sqft_living = st.number_input("Living Area (sqft):", min_value=100, max_value=10000, step=1)
|