subek commited on
Commit
b1cd922
·
verified ·
1 Parent(s): c0a0b60

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +5 -4
app.py CHANGED
@@ -71,14 +71,15 @@ def display_image_with_download(image_path, caption, download_text):
71
  href = f'<a href="data:application/octet-stream;base64,{base64_data}" download="{download_text}.jpg">Download {download_text}</a>'
72
  st.markdown(href, unsafe_allow_html=True)
73
 
74
- # Streamlit app
75
- def main():
76
-
77
- st.set_page_config(
78
  page_title="Pneumonia Detection App",
79
  page_icon=":microscope:",
80
  layout="wide"
81
  )
 
 
 
 
82
 
83
  st.title("Pneumonia Detection")
84
 
 
71
  href = f'<a href="data:application/octet-stream;base64,{base64_data}" download="{download_text}.jpg">Download {download_text}</a>'
72
  st.markdown(href, unsafe_allow_html=True)
73
 
74
+ st.set_page_config(
 
 
 
75
  page_title="Pneumonia Detection App",
76
  page_icon=":microscope:",
77
  layout="wide"
78
  )
79
+
80
+ # Streamlit app
81
+ def main():
82
+
83
 
84
  st.title("Pneumonia Detection")
85