Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
|
@@ -34,7 +34,7 @@ def main():
|
|
| 34 |
|
| 35 |
# Make prediction
|
| 36 |
prediction = model.predict(input_data)
|
| 37 |
-
wine_type = "White" if prediction[0] == 1 else "Red"
|
| 38 |
|
| 39 |
# Display prediction
|
| 40 |
st.write('Predicted Wine Type:', wine_type)
|
|
|
|
| 34 |
|
| 35 |
# Make prediction
|
| 36 |
prediction = model.predict(input_data)
|
| 37 |
+
wine_type = "**White Wine**" if prediction[0] == 1 else "**Red Wine**"
|
| 38 |
|
| 39 |
# Display prediction
|
| 40 |
st.write('Predicted Wine Type:', wine_type)
|