Update app.py
Browse files
app.py
CHANGED
@@ -101,7 +101,7 @@ def main():
|
|
101 |
)
|
102 |
|
103 |
age = st.number_input('Enter Patient Age:', min_value=0, step=1)
|
104 |
-
aca_magnitude = st.number_input('Enter ACA Magnitude:', step=0.1)
|
105 |
aca_axis = st.number_input('Enter ACA Axis:', min_value=0, max_value=180, step=1)
|
106 |
|
107 |
if st.button('Predict!'):
|
|
|
101 |
)
|
102 |
|
103 |
age = st.number_input('Enter Patient Age:', min_value=0, step=1)
|
104 |
+
aca_magnitude = st.number_input('Enter ACA Magnitude:', min_value=0, step=0.1)
|
105 |
aca_axis = st.number_input('Enter ACA Axis:', min_value=0, max_value=180, step=1)
|
106 |
|
107 |
if st.button('Predict!'):
|