Saghir commited on
Commit
165fa9a
·
1 Parent(s): 11dedb7

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +5 -5
app.py CHANGED
@@ -27,13 +27,13 @@ st.sidebar.markdown(
27
 
28
 
29
  default_image_url_compare = "images/HistRotate.png"
30
- st.sidebar.image(default_image_url_compare, caption='A 360 rotation augmentation for training models on histopathology images. Unlike training on natural images where the rotation may change the context of the visual data, rotating a histopathology patch does not change the context and it improves the learning process for better reliable embedding learning.', width=500)
31
 
32
  default_image_url_compare = "images/FigPathDino_parameters_FLOPs_compare.png"
33
- st.sidebar.image(default_image_url_compare, caption='PathDino Vs its counterparts. Number of Parameters (Millions) vs the patch-level retrieval with macro avg F-score of majority vote (MV@5) on CAMELYON16 dataset. The bubble size represents the FLOPs.', width=500)
34
 
35
  default_image_url_compare = "images/ActivationMap.png"
36
- st.sidebar.image(default_image_url_compare, caption='Attention Visualization. When visualizing attention patterns, our PathDino transformer outperforms HIPT-small and DinoSSLPath, despite being trained on a smaller dataset of 6 million TCGA patches. In contrast, DinoSSLPath and HIPT were trained on much larger datasets, with 19 million and 104 million TCGA patches, respectively.', width=500)
37
 
38
 
39
  st.sidebar.markdown("### Citation")
@@ -54,11 +54,11 @@ col1, col2 = st.sidebar.columns(2)
54
  # Logo and text for My Logo Lab
55
  url_logo_lab = "images/rhazes_lab_logo.png"
56
  with col1:
57
- st.image(url_logo_lab, width=150)
58
  # Logo and text for My Logo Company
59
  url_logo_company = "images/Mayo_Clinic_logo.png"
60
  with col2:
61
- st.image(url_logo_company, width=150)
62
  st.sidebar.markdown("Rhazes Lab, \n Department of Artificial Intelligence and Informatics, \n Mayo Clinic, \n Rochester, MN, USA")
63
 
64
 
 
27
 
28
 
29
  default_image_url_compare = "images/HistRotate.png"
30
+ st.sidebar.image(default_image_url_compare, caption='A 360 rotation augmentation for training models on histopathology images. Unlike training on natural images where the rotation may change the context of the visual data, rotating a histopathology patch does not change the context and it improves the learning process for better reliable embedding learning.', width=350)
31
 
32
  default_image_url_compare = "images/FigPathDino_parameters_FLOPs_compare.png"
33
+ st.sidebar.image(default_image_url_compare, caption='PathDino Vs its counterparts. Number of Parameters (Millions) vs the patch-level retrieval with macro avg F-score of majority vote (MV@5) on CAMELYON16 dataset. The bubble size represents the FLOPs.', width=350)
34
 
35
  default_image_url_compare = "images/ActivationMap.png"
36
+ st.sidebar.image(default_image_url_compare, caption='Attention Visualization. When visualizing attention patterns, our PathDino transformer outperforms HIPT-small and DinoSSLPath, despite being trained on a smaller dataset of 6 million TCGA patches. In contrast, DinoSSLPath and HIPT were trained on much larger datasets, with 19 million and 104 million TCGA patches, respectively.', width=350)
37
 
38
 
39
  st.sidebar.markdown("### Citation")
 
54
  # Logo and text for My Logo Lab
55
  url_logo_lab = "images/rhazes_lab_logo.png"
56
  with col1:
57
+ st.image(url_logo_lab, width=100)
58
  # Logo and text for My Logo Company
59
  url_logo_company = "images/Mayo_Clinic_logo.png"
60
  with col2:
61
+ st.image(url_logo_company, width=100)
62
  st.sidebar.markdown("Rhazes Lab, \n Department of Artificial Intelligence and Informatics, \n Mayo Clinic, \n Rochester, MN, USA")
63
 
64