russellotniel commited on
Commit
47597c7
1 Parent(s): 4ae0e32

Created html and css file

Browse files
Files changed (2) hide show
  1. index.html +46 -0
  2. style.css +79 -0
index.html ADDED
@@ -0,0 +1,46 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!DOCTYPE html>
2
+ <html>
3
+ <head>
4
+ <link rel="stylesheet" href="file/style.css" />
5
+ <link rel="preconnect" href="https://fonts.googleapis.com" />
6
+ <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
7
+ <link href="https://fonts.googleapis.com/css2?family=Source+Sans+Pro:wght@400;600;700&display=swap" rel="stylesheet" />
8
+ <title>Bilateral View Hypercomplex Breast Classification</title>
9
+ </head>
10
+ <body>
11
+ <div class="container">
12
+ <h1 class="title">Bilateral View Hypercomplex Breast Classification</h1>
13
+ <h2 class="subtitle">Kalbe Digital Lab</h2>
14
+ <section class="overview">
15
+ <div class="grid-container">
16
+ <h3 class="overview-heading"><span class="vl">Overview</span></h3>
17
+ <p class="overview-content">
18
+ Breast cancer classification using 2-views (bilateral) that compose a mammography exam, owing to the correlations contained in mammography views, which present crucial information for identifying tumors.
19
+ <br />
20
+ Reference: <a href="https://arxiv.org/abs/2204.05798" target="_blank">https://arxiv.org/abs/2204.05798</a>
21
+ </p>
22
+ </div>
23
+ <div class="grid-container">
24
+ <h3 class="overview-heading"><span class="vl">Dataset</span></h3>
25
+ <div>
26
+ <p class="overview-content">The model is trained using CBIS <a href="https://pubmed.ncbi.nlm.nih.gov/22078258/" target="_blank">INBReast Dataset</a></p>
27
+ <ul>
28
+ <li>Target: Lesions (masses, calcifications, asymmetries, and distortions)</li>
29
+ <li>Task: Classification</li>
30
+ <li>Modality: Grayscale</li>
31
+ </ul>
32
+ </div>
33
+ </div>
34
+ <div class="grid-container">
35
+ <h3 class="overview-heading"><span class="vl">Model Architecture</span></h3>
36
+ <div>
37
+ <p class="overview-content">Parameterized Hypercomplex ResNets-18 Variants (PHYResNet).</p>
38
+ <img class="content-image" src="file/figures/phresnet18.png" alt="model-architecture" />
39
+ </div>
40
+ </div>
41
+ </section>
42
+ <h3 class="overview-heading"><span class="vl">Demo</span></h3>
43
+ <p class="overview-content">Please select the example below or upload 2 pairs of mammography exam result.</p>
44
+ </div>
45
+ </body>
46
+ </html>
style.css ADDED
@@ -0,0 +1,79 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ * {
2
+ box-sizing: border-box;
3
+ }
4
+
5
+ body {
6
+ font-family: 'Source Sans Pro', sans-serif;
7
+ font-size: 16px;
8
+ }
9
+
10
+ .container {
11
+ width: 100%;
12
+ margin: 0 auto;
13
+ }
14
+
15
+ .title {
16
+ font-size: 24px !important;
17
+ font-weight: 600 !important;
18
+ letter-spacing: 0em;
19
+ text-align: center;
20
+ color: #374159 !important;
21
+ }
22
+
23
+ .subtitle {
24
+ font-size: 24px !important;
25
+ font-style: italic;
26
+ font-weight: 400 !important;
27
+ letter-spacing: 0em;
28
+ text-align: center;
29
+ color: #1d652a !important;
30
+ padding-bottom: 0.5em;
31
+ }
32
+
33
+ .overview-heading {
34
+ font-size: 24px !important;
35
+ font-weight: 600 !important;
36
+ letter-spacing: 0em;
37
+ text-align: left;
38
+ }
39
+
40
+ .overview-content {
41
+ font-size: 14px !important;
42
+ font-weight: 400 !important;
43
+ line-height: 30px !important;
44
+ letter-spacing: 0em;
45
+ text-align: left;
46
+ }
47
+
48
+ .content-image {
49
+ width: 100% !important;
50
+ height: auto !important;
51
+ }
52
+
53
+ .vl {
54
+ border-left: 5px solid #1d652a;
55
+ padding-left: 20px;
56
+ color: #1d652a !important;
57
+ }
58
+
59
+ .grid-container {
60
+ display: grid;
61
+ grid-template-columns: 1fr 2fr;
62
+ gap: 20px;
63
+ align-items: flex-start;
64
+ margin-bottom: 0.7em;
65
+ }
66
+
67
+ @media screen and (max-width: 768px) {
68
+ .container {
69
+ width: 90%;
70
+ }
71
+
72
+ .grid-container {
73
+ display: block;
74
+ }
75
+
76
+ .overview-heading {
77
+ font-size: 18px !important;
78
+ }
79
+ }