russellotniel commited on
Commit
7506fcb
·
1 Parent(s): d9d6b8b

Added html and css file

Browse files
Files changed (2) hide show
  1. index.html +54 -0
  2. style.css +79 -0
index.html ADDED
@@ -0,0 +1,54 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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>Pathology Nuclei Classification</title>
9
+ </head>
10
+ <body>
11
+ <div class="container">
12
+ <h1 class="title">Pathology Nuclei 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
+ <div>
18
+ <p class="overview-content">Nuclei classification within Haematoxylin & Eosi stained histology images. Classifying nuclei cells as the following types:</p>
19
+ <ul>
20
+ <li>Other</li>
21
+ <li>Inflammatory</li>
22
+ <li>Epithelial</li>
23
+ <li>Spindle-Shaped</li>
24
+ </ul>
25
+ <p class="overview-content">References: <a href="https://doi.org/10.1016/j.media.2019.101563" target="_blank">https://doi.org/10.1016/j.media.2019.101563</a></p>
26
+ </div>
27
+ </div>
28
+ <div class="grid-container">
29
+ <h3 class="overview-heading"><span class="vl">Dataset</span></h3>
30
+ <div>
31
+ <p class="overview-content">
32
+ The model is trained with Colorectal Nuclear Segmentation and Phenotypes (CoNSeP) dataset
33
+ <a href="https://warwick.ac.uk/fac/cross_fac/tia/data/hovernet" target="_blank">https://warwick.ac.uk/fac/cross_fac/tia/data/hovernet</a>. Images were extracted from 16 colorectal adenocarcinoma (CRA) WSIs.
34
+ </p>
35
+ <ul>
36
+ <li>Target: Nuclei</li>
37
+ <li>Task: Nuclei Cells Class Classification</li>
38
+ <li>Modality: Image (RGB)</li>
39
+ </ul>
40
+ </div>
41
+ </div>
42
+ <div class="grid-container">
43
+ <h3 class="overview-heading"><span class="vl">Model Architecture</span></h3>
44
+ <div>
45
+ <p class="overview-content">The model is trained using DenseNet121 over CoNSep dataset.</p>
46
+ <img class="content-image" src="file/figures/architecture.png" alt="model-architecture" />
47
+ </div>
48
+ </div>
49
+ </section>
50
+ <h3 class="overview-heading"><span class="vl">Demo</span></h3>
51
+ <p class="overview-content">Please select or upload a nuclei histology image and label image to see Nuclei Cells Classification capabilities of this model</p>
52
+ </div>
53
+ </body>
54
+ </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: 33px !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: 1em;
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
+ }