-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
9aeada2
commit 91234b9
Showing
32 changed files
with
814 additions
and
239 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
.sass-cache/ | ||
__pycache__ | ||
brain_score.web.egg-info/ | ||
build/ | ||
db.sqlite3 | ||
dist/ | ||
django.log | ||
node_modules/ | ||
static/admin/ | ||
static/CACHE/ | ||
venv |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
{% extends "benchmarks/base.html" %} | ||
|
||
{% block main %} | ||
<div class="left-sidebar"> | ||
{% include "benchmarks/components/left-sidebar.html" %} | ||
</div> | ||
|
||
<div class="content-container"> | ||
<div class="banner box gradient"> | ||
{% block banner %} | ||
<h1>Welcome to Brain-Score!</h1> | ||
<p>Navigate our dashboard to view key submission data.</p> | ||
{% endblock %} | ||
</div> | ||
|
||
<div class="columns is-2 is-variable"> | ||
<div class="column"> | ||
{% block content %}{% endblock %} | ||
</div> | ||
|
||
<div class="info-section column is-3"> | ||
{% block info_section %}{% endblock %} | ||
</div> | ||
</div> | ||
</div> | ||
{% endblock %} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
<a class="selected" href="#">Leaderboard</a> | ||
<a href="#">Compare</a> | ||
<a href="#">Tutorials</a> | ||
<a href="#">Profile</a> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
15 changes: 15 additions & 0 deletions
15
benchmarks/templates/benchmarks/leaderboard/info-section.html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
<div class="box"> | ||
<h3 class="title">How to Interpret</h3> | ||
<div class="content"> | ||
Lorem ipsum leo risus, porta ac consectetur ac, vestibulum at eros. Donec id elit non mi porta gravida at eget metus. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Cras mattis consectetur purus sit amet fermentum. | ||
</div> | ||
</div> | ||
|
||
<div class="box"> | ||
<div class="title">Ready to Submit</div> | ||
<div class="content"> | ||
Below you will find links on how to prepare a model for submission and receive a Brain-Score! You will also find the same for submitting a benchmark with detailed tutorials available for both modelers and experimentalists. | ||
</div> | ||
<button class="button button-primary">Tutorials</button> | ||
<button class="button button-ghost">Submit</button> | ||
</div> |
40 changes: 40 additions & 0 deletions
40
benchmarks/templates/benchmarks/leaderboard/leaderboard.html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
{% extends "benchmarks/components/app-view.html" %} | ||
|
||
{% block content %} | ||
<div class="columns is-2 is-variable"> | ||
<div class="column is-4"> | ||
<div class="box"> | ||
<div class="gradient"> | ||
<p>Total Benchmarks</p> | ||
</div> | ||
<div> | ||
32 | ||
</div> | ||
</div> | ||
<div class="box"> | ||
<div class="gradient"> | ||
<p>Total Models</p> | ||
</div> | ||
<div> | ||
126 | ||
</div> | ||
</div> | ||
</div> | ||
|
||
<div class="column"> | ||
<div class="box" style="height: 100%;"> | ||
Graph | ||
</div> | ||
</div> | ||
</div> | ||
|
||
<div> | ||
<div class="box"> | ||
Leaderboard | ||
</div> | ||
</div> | ||
{% endblock %} | ||
|
||
{% block info_section %} | ||
{% include "benchmarks/leaderboard/info-section.html" %} | ||
{% endblock %} |
Oops, something went wrong.