Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
|
@@ -55,4 +55,4 @@ if st.button('Predict'):
|
|
| 55 |
base_price = np.expm1(pipeline.predict(one_df))[0]
|
| 56 |
|
| 57 |
# display
|
| 58 |
-
st.text(f"The price of the flat is {base_price} ")
|
|
|
|
| 55 |
base_price = np.expm1(pipeline.predict(one_df))[0]
|
| 56 |
|
| 57 |
# display
|
| 58 |
+
st.text(f"The price of the flat is {round(base_price,2)} ")
|