Spaces:
Paused
Paused
Update app.py
Browse files
app.py
CHANGED
|
@@ -79,8 +79,9 @@ with col1:
|
|
| 79 |
with col2:
|
| 80 |
# Placeholder for displaying the predicted price at the top
|
| 81 |
price_placeholder = st.empty()
|
| 82 |
-
price_placeholder.markdown(
|
| 83 |
-
|
| 84 |
-
|
|
|
|
| 85 |
map_data = pd.DataFrame(cities_geo[city])
|
| 86 |
st.map(map_data, zoom=11)
|
|
|
|
| 79 |
with col2:
|
| 80 |
# Placeholder for displaying the predicted price at the top
|
| 81 |
price_placeholder = st.empty()
|
| 82 |
+
# price_placeholder.markdown(
|
| 83 |
+
# f"<h1 style='font-size: 24px;'>Predicted Price: ${predicted_price[0][0]:,.2f}</h1>",
|
| 84 |
+
# unsafe_allow_html=True)
|
| 85 |
+
price_placeholder.subheader(f'Predicted Price: ${predicted_price[0][0]:,.2f}')
|
| 86 |
map_data = pd.DataFrame(cities_geo[city])
|
| 87 |
st.map(map_data, zoom=11)
|