diff --git a/app.py b/app.py index 96d8df23..b14cfb8e 100644 --- a/app.py +++ b/app.py @@ -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) @@ -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(): """ @@ -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) ) diff --git a/src/CovidClassifier/__pycache__/CovidClassifier.cpython-36.pyc b/src/CovidClassifier/__pycache__/CovidClassifier.cpython-36.pyc index 460eb43f..7e93b118 100644 Binary files a/src/CovidClassifier/__pycache__/CovidClassifier.cpython-36.pyc and b/src/CovidClassifier/__pycache__/CovidClassifier.cpython-36.pyc differ diff --git a/src/Pages/__pycache__/NewUserPage.cpython-36.pyc b/src/Pages/__pycache__/NewUserPage.cpython-36.pyc index 54161727..09b149f1 100644 Binary files a/src/Pages/__pycache__/NewUserPage.cpython-36.pyc and b/src/Pages/__pycache__/NewUserPage.cpython-36.pyc differ diff --git a/src/Utils/__pycache__/Utils.cpython-36.pyc b/src/Utils/__pycache__/Utils.cpython-36.pyc index 27802022..7ccdc90e 100644 Binary files a/src/Utils/__pycache__/Utils.cpython-36.pyc and b/src/Utils/__pycache__/Utils.cpython-36.pyc differ