-
Notifications
You must be signed in to change notification settings - Fork 1
/
detailsPage.html
184 lines (158 loc) Β· 5.8 KB
/
detailsPage.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>CodeMind Leaderboard</title>
<script src="https://cdnjs.cloudflare.com/ajax/libs/PapaParse/5.3.0/papaparse.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/echarts.min.js"></script>
<!-- favicon.svg -->
<!-- <link rel="icon" href="data:image/svg+xml,<svg xmlns=%22http://www.w3.org/2000/svg%22 viewBox=%220 0 100 100%22><text y=%22.9em%22 font-size=%2290%22>π</text></svg>"> -->
<!-- <link rel="icon" href="/favicon.svg" /> -->
<link rel="icon" href="https://images.emojiterra.com/google/noto-emoji/unicode-15/color/1024px/1f9d1-1f4bb.png">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css">
<style>
#content {
width: 100%;
max-width: 1200px; /* You can adjust this value according to your needs */
margin: 0 auto; /* This will center the div if the viewport is wider than max-width */
}
th, td {
text-align: center;
}
.citation-box {
border-left: 5px solid #333;
padding: 10px;
margin: 10px;
background-color: #f9f9f9;
font-style: italic;
}
.collapsible {
background-color: transparent;
color: black;
cursor: pointer;
padding: 10px;
width: 100%;
border-left: 1px solid #000000;
border-right: 1px solid #000000;
border-bottom: 1px solid #000000;
text-align: left;
outline: none;
font-size: 15px;
display: block;
margin: 0; /* Remove margin */
}
.collapsible.active {
color: darkgray;
}
.collapsible:after {
content: '\002B'; /* Unicode character for "+" sign */
color: black;
font-weight: bold;
float: right;
margin-left: 5px;
border-bottom: 0px;
}
.collapsible.active:after {
content: "\2212"; /* Unicode character for "β" sign */
}
.ccontent {
padding: 10px;
display: none;
overflow: hidden;
background-color: #f9f9f9;
border-left: 1px solid #000000;
border-right: 1px solid #000000;
border-bottom: 1px solid #000000;
text-align: left;
}
#notes {
font-size: 1em;
}
#notes h3 {
margin-top: 1em;
font-size: 2em;
text-align: center;
}
#notes li {
font-size: 1.2em;
font-weight: 300;
margin: 1em;
}
#detailsTable {
width: 100%;
height: auto;
text-align: center;
overflow: auto; /* This will add a scrollbar if the content is larger than the div */
}
#modelResults {
width: 100%; /* This will make the div take up the full width of its parent */
overflow: auto; /* This will add a scrollbar if the content is larger than the div */
text-align: center;
overflow: auto;
}
</style>
</head>
<body>
<div id="content" class="container-fluid d-flex flex-column align-items-center gap-3">
<div id="content" class="container-fluid d-flex flex-column align-items-center gap-3">
<h1 class="text-nowrap mt-5">π CodeMind Leaderboard π</h1>
<h3 class="fw-light text-nowrap"><small id="warning">A Framework to Challenge Large Language Models for Code Reasoning.<br></small>
</h3>
<div class="d-flex flex-row justify-content-center gap-3">
<a href="https://github.com/Intelligent-CAT-Lab/CodeMind"><img
src="https://img.shields.io/badge/github-%23121011.svg?style=for-the-badge&logo=github&logoColor=white"
alt="github" class="img-fluid"></a>
<a href="https://arxiv.org/abs/2402.09664"><img
src="https://img.shields.io/badge/arXiv-2402.09664-b31b1b.svg"
alt="paper"
class="img-fluid"></a>
</div>
<img src="CodeMind-Logo.jpg" alt="Girl in a jacket" width="20%">
<div class="container-fluid d-flex flex-column align-items-center">
<h5 class="fw-light justify-content-center">π Please cite our paper if you are using this leaderboard in your work π</h5>
</div>
<a href="index.html">
Back to Home
</a>
<div class="d-flex flex-row justify-content-center gap-3">
<label for="taskDropdownLabel" style="display: none;">Tasks:</label>
<select id="taskDropdown">
<option value="ier">IER</option>
<!-- <option value="der">DER</option>
<option value="sr">SR</option> -->
</select>
<label for="datasetDropdownLabel" style="display: none;">Dataset:</label>
<select id="datasetDropdown">
<!-- Options are set dynamically -->
</select>
<!-- <label for="generationtaskLabel" style="display: none;">Generation Task:</label> -->
<!-- <select id="generationtask" style="display: none;">
</select> -->
<label for="languageLabel" style="display: none;">Language:</label>
<select id="languageDropdown" style="display: none;">
<option value="Java">Java</option>
<option value="Python">Python</option>
</select>
<label for="problemIdDropdownLabel" style="display: none;">Problem ID:</label>
<select id="problemIdDropdown">
<!-- Options are set dynamically -->
</select>
<label for="modelDropdownLabel" style="display: none;">Problem ID:</label>
<select id="modelDropdown" style="display: none;">
<!-- Options are set dynamically -->
</select>
</div>
<!-- <script>
document.addEventListener("DOMContentLoaded", function() {
filterDropdowns();
});
</script> -->
</div>
<div id="detailsTable"></div>
<!-- Table loaded dynamically -->
<div id="modelResults"></div>
<!-- Table loaded dynamically -->
</div>
<script src="detailsScript.js" defer></script>
</body>
</html>