wzxii commited on
Commit
d5077d1
1 Parent(s): a2413f8

Upload 3 files

Browse files
Files changed (3) hide show
  1. button.js +29 -0
  2. index.html +27 -0
  3. style.css +49 -3
button.js CHANGED
@@ -2,10 +2,13 @@ var btn_evalTable = document.getElementById("btn_evalTable");
2
  var btn_about = document.getElementById("btn_about");
3
  var btn_plot = document.getElementById("btn_plot");
4
  var btn_submit = document.getElementById("btn_submit");
 
 
5
  var sec_evalTable = document.getElementById("sec_evalTable");
6
  var sec_about = document.getElementById("sec_about");
7
  var sec_plot = document.getElementById("sec_plot")
8
  var sec_submit = document.getElementById("sec_submit");
 
9
 
10
 
11
  btn_evalTable.addEventListener("click", function() {
@@ -13,11 +16,14 @@ btn_evalTable.addEventListener("click", function() {
13
  sec_plot.style.display = "none";
14
  sec_about.style.display = "none";
15
  sec_submit.style.display = "none";
 
16
 
17
  btn_evalTable.style.color = "#000000";
18
  btn_plot.style.color = "#7c7b7b";
19
  btn_about.style.color = "#7c7b7b";
20
  btn_submit.style.color = "#7c7b7b";
 
 
21
 
22
  });
23
  btn_about.addEventListener("click", function() {
@@ -25,11 +31,15 @@ btn_about.addEventListener("click", function() {
25
  sec_plot.style.display = "none";
26
  sec_about.style.display = "block";
27
  sec_submit.style.display = "none";
 
 
28
 
29
  btn_evalTable.style.color = "#7c7b7b";
30
  btn_plot.style.color = "#7c7b7b";
31
  btn_about.style.color = "#000000";
32
  btn_submit.style.color = "#7c7b7b";
 
 
33
 
34
  });
35
 
@@ -38,11 +48,14 @@ btn_plot.addEventListener("click", function() {
38
  sec_plot.style.display = "block";
39
  sec_about.style.display = "none";
40
  sec_submit.style.display = "none";
 
 
41
 
42
  btn_evalTable.style.color = "#7c7b7b";
43
  btn_plot.style.color = "#000000";
44
  btn_about.style.color = "#7c7b7b";
45
  btn_submit.style.color = "#7c7b7b";
 
46
 
47
  });
48
 
@@ -51,12 +64,28 @@ btn_submit.addEventListener("click", function() {
51
  sec_plot.style.display = "none";
52
  sec_about.style.display = "none";
53
  sec_submit.style.display = "block";
 
54
 
55
  btn_evalTable.style.color = "#7c7b7b";
56
  btn_plot.style.color = "#7c7b7b";
57
  btn_about.style.color = "#7c7b7b";
58
  btn_submit.style.color = "#000000";
 
 
 
 
 
 
 
 
 
 
59
 
 
 
 
 
 
60
  });
61
 
62
 
 
2
  var btn_about = document.getElementById("btn_about");
3
  var btn_plot = document.getElementById("btn_plot");
4
  var btn_submit = document.getElementById("btn_submit");
5
+ var btn_more = document.getElementById("btn_more");
6
+
7
  var sec_evalTable = document.getElementById("sec_evalTable");
8
  var sec_about = document.getElementById("sec_about");
9
  var sec_plot = document.getElementById("sec_plot")
10
  var sec_submit = document.getElementById("sec_submit");
11
+ var sec_more = document.getElementById("sec_more");
12
 
13
 
14
  btn_evalTable.addEventListener("click", function() {
 
16
  sec_plot.style.display = "none";
17
  sec_about.style.display = "none";
18
  sec_submit.style.display = "none";
19
+ sec_more.style.display = "none";
20
 
21
  btn_evalTable.style.color = "#000000";
22
  btn_plot.style.color = "#7c7b7b";
23
  btn_about.style.color = "#7c7b7b";
24
  btn_submit.style.color = "#7c7b7b";
25
+ btn_more.style.color = "#7c7b7b";
26
+
27
 
28
  });
29
  btn_about.addEventListener("click", function() {
 
31
  sec_plot.style.display = "none";
32
  sec_about.style.display = "block";
33
  sec_submit.style.display = "none";
34
+ sec_more.style.display = "none";
35
+
36
 
37
  btn_evalTable.style.color = "#7c7b7b";
38
  btn_plot.style.color = "#7c7b7b";
39
  btn_about.style.color = "#000000";
40
  btn_submit.style.color = "#7c7b7b";
41
+ btn_more.style.color = "#7c7b7b";
42
+
43
 
44
  });
45
 
 
48
  sec_plot.style.display = "block";
49
  sec_about.style.display = "none";
50
  sec_submit.style.display = "none";
51
+ sec_more.style.display = "none";
52
+
53
 
54
  btn_evalTable.style.color = "#7c7b7b";
55
  btn_plot.style.color = "#000000";
56
  btn_about.style.color = "#7c7b7b";
57
  btn_submit.style.color = "#7c7b7b";
58
+ btn_more.style.color = "#7c7b7b";
59
 
60
  });
61
 
 
64
  sec_plot.style.display = "none";
65
  sec_about.style.display = "none";
66
  sec_submit.style.display = "block";
67
+ sec_more.style.display = "none";
68
 
69
  btn_evalTable.style.color = "#7c7b7b";
70
  btn_plot.style.color = "#7c7b7b";
71
  btn_about.style.color = "#7c7b7b";
72
  btn_submit.style.color = "#000000";
73
+ btn_more.style.color = "#7c7b7b";
74
+
75
+ });
76
+
77
+ btn_more.addEventListener("click", function() {
78
+ sec_evalTable.style.display = "none";
79
+ sec_plot.style.display = "none";
80
+ sec_about.style.display = "none";
81
+ sec_submit.style.display = "none";
82
+ sec_more.style.display = "block";
83
 
84
+ btn_evalTable.style.color = "#7c7b7b";
85
+ btn_plot.style.color = "#7c7b7b";
86
+ btn_about.style.color = "#7c7b7b";
87
+ btn_submit.style.color = "#7c7b7b";
88
+ btn_more.style.color = "#000000";
89
  });
90
 
91
 
index.html CHANGED
@@ -48,6 +48,7 @@
48
  <button id="btn_plot">📊 Performance Plot</button>
49
  <button id="btn_about">📝 About</button>
50
  <button id="btn_submit">🚀 Submit results</button>
 
51
  </section>
52
 
53
  <section class="section_evalTable" id="sec_evalTable">
@@ -215,6 +216,32 @@
215
  </div>
216
  </section>
217
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
218
 
219
 
220
  <footer>
 
48
  <button id="btn_plot">📊 Performance Plot</button>
49
  <button id="btn_about">📝 About</button>
50
  <button id="btn_submit">🚀 Submit results</button>
51
+ <button id="btn_more">🤗 More Leaderboards</button>
52
  </section>
53
 
54
  <section class="section_evalTable" id="sec_evalTable">
 
216
  </div>
217
  </section>
218
 
219
+ <section class="section_more" id="sec_more">
220
+ <h2>Context</h2>
221
+ <p>In addition to Memorization or Generation of Big Code Models Leaderboard, it is recommended to comprehensively
222
+ understand LLM coding ability through a diverse set of benchmarks and leaderboards, such as:
223
+ </p>
224
+ <ul>
225
+ <li><a href="https://evalplus.github.io/leaderboard.html" target="_blank">EvalPlus Leaderboard</a></li>
226
+ <li><a href="https://huggingface.co/spaces/bigcode/bigcode-models-leaderboard" target="_blank">Big Code Models Leaderboard</a></li>
227
+ <li><a href="https://github.com/amazon-science/cceval" target="_blank">CrossCodeEval</a></li>
228
+ <li><a href="https://evo-eval.github.io" target="_blank">Evo-Eval</a></li>
229
+ <li><a href="https://crux-eval.github.io/leaderboard.html" target="_blank">CRUXEval</a></li>
230
+ <li><a href="https://huggingface.co/spaces/lmsys/chatbot-arena-leaderboard" target="_blank">Chatbot Arena Leaderboard</a></li>
231
+ <li><a href="https://fudanselab-classeval.github.io/leaderboard.html" target="_blank">ClassEval</a></li>
232
+ <li><a href="https://bigcode-bench.github.io" target="_blank">Code Lingua</a></li>
233
+ <li><a href="https://github.com/01-ai/HumanEval.jl" target="_blank">HumanEval.jl - Julia version HumanEval with EvalPlus test cases</a></li>
234
+ <li><a href="https://infi-coder.github.io/infibench/" target="_blank">InfiBench</a></li>
235
+ <li><a href="https://livecodebench.github.io/leaderboard.html" target="_blank">LiveCodeBench</a></li>
236
+ <li><a href="https://github.com/THUDM/NaturalCodeBench" target="_blank">NaturalCodeBench</a></li>
237
+ <li><a href="https://www.swebench.com" target="_blank">SWE-bench</a></li>
238
+ <li><a href="https://leaderboard.tabbyml.com" target="_blank">TabbyML Leaderboard</a></li>
239
+ <li><a href="https://github.com/Leolty/repobench" target="_blank">RepoBench</a></li>
240
+ <li><a href="https://github.com/alphadl/OOP-eval" target="_blank">OOP</a></li>
241
+
242
+ </ul>
243
+ </section>
244
+
245
 
246
 
247
  <footer>
style.css CHANGED
@@ -44,7 +44,7 @@
44
  }
45
  .section_button button {
46
  text-align: center;
47
- width: 190px;
48
  height: 45px;
49
  color: #7c7b7b;
50
  border-style: solid;
@@ -63,8 +63,8 @@
63
  color: #000000;
64
  }
65
  #btn_plot {
66
- /* border-right-width: 0; */
67
- border-top-right-radius: 5px;
68
  }
69
  #btn_about {
70
  display: none
@@ -75,6 +75,9 @@
75
  /* border-bottom-right-radius: 5px; */
76
  border-left-width: 0;
77
  }
 
 
 
78
  .section_button button:hover {
79
  color: #000000;
80
  cursor: pointer;
@@ -301,6 +304,49 @@
301
  }
302
  /* submit */
303
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
304
  /* .u {
305
  color: #ad64d4
306
  } */
 
44
  }
45
  .section_button button {
46
  text-align: center;
47
+ width: 200px;
48
  height: 45px;
49
  color: #7c7b7b;
50
  border-style: solid;
 
63
  color: #000000;
64
  }
65
  #btn_plot {
66
+ border-right-width: 0;
67
+ /* border-top-right-radius: 5px; */
68
  }
69
  #btn_about {
70
  display: none
 
75
  /* border-bottom-right-radius: 5px; */
76
  border-left-width: 0;
77
  }
78
+ #btn_more {
79
+ border-top-right-radius: 5px;
80
+ }
81
  .section_button button:hover {
82
  color: #000000;
83
  cursor: pointer;
 
304
  }
305
  /* submit */
306
 
307
+
308
+ /* more */
309
+ .section_more {
310
+ display: none;
311
+ /* margin-top: 30px; */
312
+ margin-left: 130px;
313
+ margin-right: 130px;
314
+ padding-top: 10px;
315
+ padding-bottom: 30px;
316
+ border: 1px solid rgb(228, 228, 228);
317
+ /* border-top-right-radius: 5px;
318
+ border-bottom-left-radius: 5px;
319
+ border-bottom-right-radius: 5px; */
320
+ }
321
+ .section_more h2 {
322
+ font-size: 25px;
323
+ font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
324
+ /* display: flex;
325
+ justify-content: center; */
326
+ }
327
+ .section_more p {
328
+ font-family:'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
329
+ margin-top: 10px;
330
+ }
331
+ .section_more ul {
332
+ margin-top: 15px;
333
+ list-style: circle;
334
+ padding-left: 30px;
335
+ }
336
+ .section_more ul {
337
+ /* background-color: rgb(241, 248, 254); */
338
+ font-family:'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
339
+ line-height: 2em;
340
+ font-size: 18px;
341
+ }
342
+ .section_more a {
343
+ color: #6d96ff;
344
+ text-decoration-color: #5d88ff;
345
+ text-decoration-style: dashed;
346
+ }
347
+ /* more */
348
+
349
+
350
  /* .u {
351
  color: #ad64d4
352
  } */