Code changes
Browse files
app.py
CHANGED
@@ -401,14 +401,7 @@ def build_app():
|
|
401 |
|
402 |
with gr.Blocks(css=css_str) as demo:
|
403 |
gr.HTML(
|
404 |
-
""
|
405 |
-
<div style="text-align: center;">
|
406 |
-
<h1 style="font-size: 4em; margin: 0; padding: 0;">
|
407 |
-
🧠↗️ Brain2vec Leaderboard
|
408 |
-
</h1>
|
409 |
-
</div>
|
410 |
-
""",
|
411 |
-
elem_id="leaderboard-heading"
|
412 |
)
|
413 |
gr.HTML(scoreboard_html)
|
414 |
gr.Markdown(docs_content)
|
|
|
401 |
|
402 |
with gr.Blocks(css=css_str) as demo:
|
403 |
gr.HTML(
|
404 |
+
"<div id='leaderboard-heading'>🧠↗️Brain2vec Leaderboard</div>"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
405 |
)
|
406 |
gr.HTML(scoreboard_html)
|
407 |
gr.Markdown(docs_content)
|
css.css
CHANGED
@@ -19,6 +19,14 @@ html, body {
|
|
19 |
text-rendering: optimizeLegibility;
|
20 |
}
|
21 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
22 |
/* Table: basic styling */
|
23 |
table.custom-board {
|
24 |
width: 100%;
|
|
|
19 |
text-rendering: optimizeLegibility;
|
20 |
}
|
21 |
|
22 |
+
#leaderboard-heading {
|
23 |
+
font-size: 3em !important; /* Very big text */
|
24 |
+
font-weight: 700 !important; /* Bold */
|
25 |
+
text-align: center !important; /* Centered */
|
26 |
+
margin: 0.2em 0 !important; /* Minimal vertical margin */
|
27 |
+
padding: 0 !important; /* No extra padding */
|
28 |
+
}
|
29 |
+
|
30 |
/* Table: basic styling */
|
31 |
table.custom-board {
|
32 |
width: 100%;
|
docs.md
CHANGED
@@ -38,7 +38,7 @@ Downstream models are fit using feature vectors for all scans from the training
|
|
38 |
|
39 |
### Rank computation
|
40 |
|
41 |
-
Each metric is ranked within its category. Overall rank is computed by combining **reconstruction** and **downstream** ranks.
|
42 |
|
43 |
### Repository
|
44 |
|
|
|
38 |
|
39 |
### Rank computation
|
40 |
|
41 |
+
Each metric is ranked within its category for the test dataset results. Overall rank is computed by combining **reconstruction** and **downstream** ranks.
|
42 |
|
43 |
### Repository
|
44 |
|