Spaces:
Paused
Paused
Update app.py
Browse files
app.py
CHANGED
|
@@ -324,8 +324,11 @@ with col2:
|
|
| 324 |
st.map(map_data)
|
| 325 |
|
| 326 |
# Placeholder for displaying the predicted price at the top
|
| 327 |
-
|
| 328 |
-
price_placeholder = st.subheader()
|
| 329 |
|
| 330 |
# Display the predicted price at the top of the app
|
| 331 |
-
price_placeholder.write(f"Predicted Price: ${predicted_price[0][0]:,.2f}")
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 324 |
st.map(map_data)
|
| 325 |
|
| 326 |
# Placeholder for displaying the predicted price at the top
|
| 327 |
+
price_placeholder = st.empty()
|
|
|
|
| 328 |
|
| 329 |
# Display the predicted price at the top of the app
|
| 330 |
+
# price_placeholder.write(f"Predicted Price: ${predicted_price[0][0]:,.2f}")
|
| 331 |
+
price_placeholder.markdown(
|
| 332 |
+
f"<h1 style='font-size: 24px;'>Predicted Price: ${predicted_price[0][0]:,.2f}</h1>",
|
| 333 |
+
unsafe_allow_html=True
|
| 334 |
+
)
|