Jfink09 commited on
Commit
093d49d
·
verified ·
1 Parent(s): 22f0baf

Update app.py

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