Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
|
@@ -1,7 +1,7 @@
|
|
| 1 |
import streamlit as st
|
| 2 |
from sklearn import neighbors, datasets
|
| 3 |
|
| 4 |
-
with st.form(key='my_form')
|
| 5 |
sLen = st.slider('sepal lenght(cm)', 0.0, 10.0)
|
| 6 |
sWid = st.slider('sepal width(cm)', 0.0, 10.0)
|
| 7 |
pLen = st.slider('petal lenght(cm)', 0.0, 10.0)
|
|
|
|
| 1 |
import streamlit as st
|
| 2 |
from sklearn import neighbors, datasets
|
| 3 |
|
| 4 |
+
with st.form(key='my_form'):
|
| 5 |
sLen = st.slider('sepal lenght(cm)', 0.0, 10.0)
|
| 6 |
sWid = st.slider('sepal width(cm)', 0.0, 10.0)
|
| 7 |
pLen = st.slider('petal lenght(cm)', 0.0, 10.0)
|