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

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +5 -4
app.py CHANGED
@@ -71,15 +71,16 @@ 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
- 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
 
 
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
+
75
+
76
+ # Streamlit app
77
+ def main():
78
+ st.set_page_config(
79
  page_title="Pneumonia Detection App",
80
  page_icon=":microscope:",
81
  layout="wide"
82
  )
83
 
 
 
 
84
 
85
  st.title("Pneumonia Detection")
86