Jfink09 commited on
Commit
7849b98
·
verified ·
1 Parent(s): 164ee02

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -3
app.py CHANGED
@@ -100,9 +100,9 @@ def main():
100
  unsafe_allow_html=True
101
  )
102
 
103
- age = st.number_input('Enter Patient Age:', min_value=0.0, step=1)
104
- aca_magnitude = st.number_input('Enter ACA Magnitude:', min_value=0.0, step=0.1)
105
- aca_axis = st.number_input('Enter ACA Axis:', min_value=0.0, max_value=180.0, step=1)
106
 
107
  if st.button('Predict!'):
108
  astigmatism = predict_astigmatism(age, aca_magnitude, aca_axis)
 
100
  unsafe_allow_html=True
101
  )
102
 
103
+ age = st.number_input('Enter Patient Age:', step=1)
104
+ aca_magnitude = st.number_input('Enter ACA Magnitude:', step=0.1)
105
+ aca_axis = st.number_input('Enter ACA Axis:', max_value=180.0, step=1)
106
 
107
  if st.button('Predict!'):
108
  astigmatism = predict_astigmatism(age, aca_magnitude, aca_axis)