Update app.py
Browse files
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)
|