grupoaura commited on
Commit
2d9a29e
·
verified ·
1 Parent(s): c46ec8d

Update src/streamlit_app.py

Browse files
Files changed (1) hide show
  1. src/streamlit_app.py +5 -5
src/streamlit_app.py CHANGED
@@ -93,13 +93,13 @@ if st.button("Estou pronto para fazer a previsão", type="primary"):
93
 
94
  prediction = model.predict(z)
95
  if prediction[0] == 1:
96
- st.text("**:blue[Azul]**")
97
  elif prediction[0] == 2:
98
- st.text("**:green[Verde]**")
99
  elif prediction[0] == 3:
100
- st.text("**:yellow[Amarelo]**")
101
  elif prediction[0] == 4:
102
- st.text("**:orange[Laranja]**")
103
  elif prediction[0] == 5:
104
- st.text("**:red[Vermelho]**")
105
 
 
93
 
94
  prediction = model.predict(z)
95
  if prediction[0] == 1:
96
+ st.text("Azul")
97
  elif prediction[0] == 2:
98
+ st.text("Verde")
99
  elif prediction[0] == 3:
100
+ st.text("Amarelo")
101
  elif prediction[0] == 4:
102
+ st.text("Laranja")
103
  elif prediction[0] == 5:
104
+ st.text("Vermelho")
105