Update app.py
Browse files
app.py
CHANGED
@@ -4,5 +4,5 @@ with st.form(key='my_form'):
|
|
4 |
sLen = st.slider('Sepal lenght(cm) ', 0.0, 10.0)
|
5 |
sWid = st.slider('Sepal width(cm) ', 0.0, 10.0)
|
6 |
pLen = st.slider('Petal lenght(cm) ', 0.0, 10.0)
|
7 |
-
|
8 |
st.form_submit_button('Predict')
|
|
|
4 |
sLen = st.slider('Sepal lenght(cm) ', 0.0, 10.0)
|
5 |
sWid = st.slider('Sepal width(cm) ', 0.0, 10.0)
|
6 |
pLen = st.slider('Petal lenght(cm) ', 0.0, 10.0)
|
7 |
+
pWid = st.slider('Petal width(cm) ', 0.0, 10.0)
|
8 |
st.form_submit_button('Predict')
|