Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -87,4 +87,6 @@ if st.button("Predict"):
|
|
87 |
|
88 |
st.write("Predictions:")
|
89 |
st.write(f"Brix: {prediction[0][0]}") # Assuming model outputs a list of lists
|
90 |
-
st.write(f"Pol:
|
|
|
|
|
|
87 |
|
88 |
st.write("Predictions:")
|
89 |
st.write(f"Brix: {prediction[0][0]}") # Assuming model outputs a list of lists
|
90 |
+
st.write(f"Pol: {prediction[0][1]}")
|
91 |
+
st.write(f"Purity: {prediction[0][2]}")
|
92 |
+
st.write(f"RS: {prediction[0][3]}")
|