Skip to content

Commit

Permalink
deploy: 12ecdf9
Browse files Browse the repository at this point in the history
  • Loading branch information
LiesIsLeuk committed Nov 30, 2023
1 parent 56b7b0a commit 7ef5285
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 15 deletions.
17 changes: 4 additions & 13 deletions task1/leaderboard/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ <h2>leaderboard</h2>
<script src="https://exporl.github.io/auditory-eeg-challenge-2024/js/vendor.min.736ee54e3a51f67df2161c29034041adf68cf9bbf8413bfbb7a3e8bb1d631150.js"></script>

<div style="width: 100%;height: 600px;margin: 0 auto">
<canvas id="5cfa85a6bbdccdd14f24c8e484ccfedc"></canvas>
<canvas id="4c4efcc58db8e1a2da45cdcfb8cdcf64"></canvas>
</div>

<div id="container" style="width: 100%;height: 600px;margin: 0 auto">
Expand Down Expand Up @@ -147,7 +147,7 @@ <h3>
console.log(withinResults);


var ctx = document.getElementById('5cfa85a6bbdccdd14f24c8e484ccfedc').getContext('2d');
var ctx = document.getElementById('4c4efcc58db8e1a2da45cdcfb8cdcf64').getContext('2d');
var options = {
type: 'bar',
data: {
Expand Down Expand Up @@ -196,7 +196,7 @@ <h3>

const boxplotData = {

labels: groupNames.slice(10),
labels: groupNames,
datasets: [{
label: 'Test set ',
backgroundColor: 'rgba(255,0,0,0.5)',
Expand All @@ -205,16 +205,7 @@ <h3>
outlierColor: 'rgba(255,0,0,0.5)',
padding: 10,
itemRadius: 0,
data: withinResults.slice(10)
}, {
label: 'Test set',
backgroundColor: 'rgba(0,0,255,0.5)',
borderColor: 'blue',
borderWidth: 1,
outlierColor: 'rgba(0,0,255,0.5)',
padding: 10,
itemRadius: 0,
data:heldoutResults.slice(10)
data: withinResults
}]
};
var ctx = document.getElementById("canvas").getContext("2d");
Expand Down
4 changes: 2 additions & 2 deletions task2/leaderboard/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ <h2>leaderboard</h2>

<div style="width: 100%;height: 600px;margin: 0 auto">

<canvas id="cfe64fcc8a8dc4c2d48ecb1cab54dfd5"></canvas>
<canvas id="4dc8da214fc5fcb4568ecccdc4af8deb"></canvas>
</div>
<div id="container" style="width: 100%;height: 600px;margin: 0 auto">

Expand Down Expand Up @@ -150,7 +150,7 @@ <h3>



var ctx = document.getElementById('cfe64fcc8a8dc4c2d48ecb1cab54dfd5').getContext('2d');
var ctx = document.getElementById('4dc8da214fc5fcb4568ecccdc4af8deb').getContext('2d');
var options = {
type: 'bar',
data: {
Expand Down

0 comments on commit 7ef5285

Please sign in to comment.