Skip to content

Commit

Permalink
Merge pull request #26 from LukasHaas/dev-lukas
Browse files Browse the repository at this point in the history
Dev lukas
  • Loading branch information
Lukas Haas authored Mar 19, 2021
2 parents 9a5759c + afd28b1 commit 82958de
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions app.py
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ def model_information():
""")

image = Image.open(ROC_IMAGE_URL)
st.image(image=image, width=500)
st.image(image=image, use_column_width='auto')

st.write("""\n
Currently our model is trained on an 2x augmented training set of 5,031 examples (1,677 per class)
Expand All @@ -82,7 +82,7 @@ def model_information():
""")

image = Image.open(CONFUSION_IMAGE_URL)
st.image(image=image, width=500)
st.image(image=image, use_column_width='auto')

def disclaimer_section():
"""
Expand Down Expand Up @@ -137,10 +137,10 @@ def information_section(session_state):
"Returning": ReturningUserPage
}

new_user_prompt = 'new user and I would like to get a COVID-19 risk evaluation'
returning_user_prompt = 'returning user and I would like to submit the result of my PCR test'
new_user_prompt = '... new user (COVID-19 risk evaluation)'
returning_user_prompt = '... returning user (submit PCR test)'

returning_option = st.selectbox('I am a',
returning_option = st.selectbox('I am a ...',
('', new_user_prompt, returning_user_prompt)
)

Expand Down
Binary file modified src/CovidClassifier/__pycache__/CovidClassifier.cpython-36.pyc
Binary file not shown.
Binary file modified src/Pages/__pycache__/NewUserPage.cpython-36.pyc
Binary file not shown.
Binary file modified src/Utils/__pycache__/Utils.cpython-36.pyc
Binary file not shown.

0 comments on commit 82958de

Please sign in to comment.