Skip to content

Commit d5c42e9

Browse files
committed
website_v1
0 parents  commit d5c42e9

19 files changed

+1458
-0
lines changed

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
SegRap.github.io

contact.html

Lines changed: 145 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,145 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
4+
<head>
5+
<meta charset="UTF-8">
6+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
7+
<title>SegRap2025 Challenge</title>
8+
<link rel="stylesheet" href="shared.css">
9+
<style>
10+
.evaluate-section {
11+
margin-bottom: 60px;
12+
}
13+
14+
.evaluate-content {
15+
background: white;
16+
border-radius: 12px;
17+
padding: 10px;
18+
margin-bottom: 0px;
19+
}
20+
21+
.leaderboard-table {
22+
width: 100%;
23+
border-collapse: collapse;
24+
margin: 20px 0;
25+
}
26+
27+
.leaderboard-table th,
28+
.leaderboard-table td {
29+
padding: 12px;
30+
text-align: left;
31+
border-bottom: 1px solid #eee;
32+
}
33+
34+
.leaderboard-table th {
35+
font-weight: 500;
36+
color: var(--text-primary);
37+
background: #f8f9fa;
38+
}
39+
40+
.leaderboard-table td {
41+
color: var(--text-secondary);
42+
}
43+
44+
.rank {
45+
font-weight: 600;
46+
color: var(--primary-color);
47+
}
48+
49+
.team-name {
50+
color: var(--text-primary);
51+
font-weight: 500;
52+
}
53+
54+
.metric-value {
55+
font-family: monospace;
56+
}
57+
58+
.evaluation-metrics {
59+
margin-top: 20px;
60+
}
61+
62+
.metric-item {
63+
margin-bottom: 20px;
64+
}
65+
66+
.metric-name {
67+
font-weight: 500;
68+
color: var(--text-primary);
69+
font-size: 20px;
70+
margin-bottom: 8px;
71+
margin-top: 0px;
72+
}
73+
74+
.metric-description {
75+
color: var(--text-secondary);
76+
font-size: 0.95em;
77+
line-height: 1.5;
78+
width: 100%;
79+
}
80+
81+
.metric-description ul {
82+
list-style: none;
83+
padding: 0;
84+
margin: 0;
85+
width: 100%;
86+
}
87+
88+
.metric-description li {
89+
margin-bottom: 8px;
90+
}
91+
92+
.submit-section {
93+
margin-top: 30px;
94+
width: 100%;
95+
}
96+
97+
.submit-button {
98+
display: inline-block;
99+
padding: 12px 24px;
100+
background: var(--primary-color);
101+
color: white;
102+
border-radius: 4px;
103+
text-decoration: none;
104+
transition: background 0.2s ease;
105+
}
106+
107+
.submit-button:hover {
108+
background: var(--primary-dark);
109+
}
110+
</style>
111+
</head>
112+
113+
<body>
114+
<div class="site-header">
115+
<div class="header-image" style="text-align: center;">
116+
<img src="logo_web.png" alt="SegRap Logo" style="width: 50%; height: auto;">
117+
</div>
118+
<div class="header-container">
119+
<div class="content-section">
120+
<nav class="nav-links">
121+
<a href="index.html">Home</a>
122+
<a href="tasks.html">Tasks</a>
123+
<a href="evaluate.html">Evaluate</a>
124+
<a href="leaderboard.html">Leaderboard</a>
125+
<a href="organizing.html">Organizing</a>
126+
<a href="contact.html" class="active">Contact</a>
127+
</nav>
128+
</div>
129+
</div>
130+
</div>
131+
132+
<main class="main-content">
133+
<!-- Contact Section -->
134+
<section id="leaderboards" class="evaluate-section">
135+
<h1 class="section-title">Contact</h1>
136+
137+
<div class="evaluate-content">
138+
<p class="metric-description">
139+
If there are any questions, please contact us at: <em>[email protected]</em></p>
140+
</div>
141+
</section>
142+
</main>
143+
</body>
144+
145+
</html>

evaluate.html

Lines changed: 188 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,188 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
4+
<head>
5+
<meta charset="UTF-8">
6+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
7+
<title>SegRap2025 Challenge</title>
8+
<link rel="stylesheet" href="shared.css">
9+
<style>
10+
.evaluate-section {
11+
margin-bottom: 60px;
12+
}
13+
14+
.evaluate-content {
15+
background: white;
16+
border-radius: 12px;
17+
padding: 10px;
18+
margin-bottom: 0px;
19+
}
20+
21+
.leaderboard-table {
22+
width: 100%;
23+
border-collapse: collapse;
24+
margin: 20px 0;
25+
}
26+
27+
.leaderboard-table th,
28+
.leaderboard-table td {
29+
padding: 12px;
30+
text-align: left;
31+
border-bottom: 1px solid #eee;
32+
}
33+
34+
.leaderboard-table th {
35+
font-weight: 500;
36+
color: var(--text-primary);
37+
background: #f8f9fa;
38+
}
39+
40+
.leaderboard-table td {
41+
color: var(--text-secondary);
42+
}
43+
44+
.rank {
45+
font-weight: 600;
46+
color: var(--primary-color);
47+
}
48+
49+
.team-name {
50+
color: var(--text-primary);
51+
font-weight: 500;
52+
}
53+
54+
.metric-value {
55+
font-family: monospace;
56+
}
57+
58+
.evaluation-metrics {
59+
margin-top: 20px;
60+
}
61+
62+
.metric-item {
63+
margin-bottom: 20px;
64+
}
65+
66+
.metric-name {
67+
font-weight: 500;
68+
color: var(--text-primary);
69+
font-size: 20px;
70+
margin-bottom: 8px;
71+
margin-top: 0px;
72+
}
73+
74+
.metric-description {
75+
color: var(--text-secondary);
76+
font-size: 0.95em;
77+
line-height: 1.5;
78+
width: 100%;
79+
}
80+
81+
.metric-description ul {
82+
list-style: none;
83+
padding: 0;
84+
margin: 0;
85+
width: 100%;
86+
}
87+
88+
.metric-description li {
89+
margin-bottom: 8px;
90+
}
91+
92+
.submit-section {
93+
margin-top: 30px;
94+
width: 100%;
95+
}
96+
97+
.submit-button {
98+
display: inline-block;
99+
padding: 12px 24px;
100+
background: var(--primary-color);
101+
color: white;
102+
border-radius: 4px;
103+
text-decoration: none;
104+
transition: background 0.2s ease;
105+
}
106+
107+
.submit-button:hover {
108+
background: var(--primary-dark);
109+
}
110+
</style>
111+
</head>
112+
113+
<body>
114+
<div class="site-header">
115+
<div class="header-image" style="text-align: center;">
116+
<img src="logo_web.png" alt="SegRap Logo" style="width: 50%; height: auto;">
117+
</div>
118+
<div class="header-container">
119+
<div class="content-section">
120+
<nav class="nav-links">
121+
<a href="index.html">Home</a>
122+
<a href="tasks.html">Tasks</a>
123+
<a href="evaluate.html" class="active">Evaluate</a>
124+
<a href="leaderboard.html">Leaderboard</a>
125+
<a href="organizing.html">Organizing</a>
126+
<a href="contact.html">Contact</a>
127+
</nav>
128+
</div>
129+
</div>
130+
</div>
131+
132+
<main class="main-content">
133+
<!-- Leaderboards Section -->
134+
<section id="leaderboards" class="evaluate-section">
135+
<h1 class="section-title">Evaluate and Ranking</h1>
136+
137+
<!-- Segmentation Leaderboard -->
138+
<div class="evaluate-content">
139+
<div class="metric-name">Two-phase Challenge Submission</div>
140+
<p class="metric-description">
141+
For the first phase (validation phase), participants can submit their segmentation results of the
142+
validation dataset to
143+
the organization team once per week. A maximum of 5 submissions are allowed during the validation
144+
stage to ensure fair
145+
evaluation and prevent overfitting.</p>
146+
<br>
147+
<p class="metric-description">
148+
For the second phase (test phase), participants must prepare and submit their Docker containers
149+
along with a short paper
150+
outlining their method.
151+
</p>
152+
</div>
153+
154+
<!-- Evaluation metrics -->
155+
<div class="evaluate-content">
156+
<div class="metric-name">Evaluation metrics</div>
157+
<p class="metric-description">
158+
Two classical medical segmentation metrics: <strong>Dice Similarity Coefficient (DSC)</strong>, and
159+
<strong>normalized surface dice (NSD)</strong>, will be used to assess different aspects of the
160+
performance of the segmentation methods.
161+
</p>
162+
</div>
163+
164+
<!-- Ranking -->
165+
<div class="evaluate-content">
166+
<div class="metric-name">Ranking</div>
167+
<p class="metric-description">
168+
Firstly, for each organ, we calculate the average DSC and NSD across all the patients respectively.
169+
Secondly, each
170+
participant will be ranked based on the organ-level DSC and NSD; each participant will have 2
171+
&times; 2 or 6 &times; 2 rankings.
172+
Finally, average all these rankings and then normalize them by the number of teams. At the same
173+
time, we will take the
174+
statistical ranking. (Allow equal teams if there is no significant difference).</p>
175+
<br>
176+
<p class="metric-description">
177+
In addition, if the submissions have some missing results on test cases, the corresponding organ's
178+
DSC and NSD will be
179+
set to 0 and 0 for ranking. For example, a test case missed an organ and the ranking value of this
180+
organ in average DSC
181+
and NSD will degrade.
182+
</p>
183+
</div>
184+
</section>
185+
</main>
186+
</body>
187+
188+
</html>

0 commit comments

Comments
 (0)