Skip to content

Commit 9c7c6ca

Browse files
committed
model links and tooltip
1 parent 9d5d614 commit 9c7c6ca

10 files changed

+29
-29
lines changed

build/asset-manifest.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
{
22
"files": {
33
"main.css": "./static/css/main.be588df3.css",
4-
"main.js": "./static/js/main.081509d5.js",
4+
"main.js": "./static/js/main.e1001e8a.js",
55
"index.html": "./index.html",
66
"main.be588df3.css.map": "./static/css/main.be588df3.css.map",
7-
"main.081509d5.js.map": "./static/js/main.081509d5.js.map"
7+
"main.e1001e8a.js.map": "./static/js/main.e1001e8a.js.map"
88
},
99
"entrypoints": [
1010
"static/css/main.be588df3.css",
11-
"static/js/main.081509d5.js"
11+
"static/js/main.e1001e8a.js"
1212
]
1313
}

build/leaderboard.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
<!doctype html><html lang="en"><head><title>LiveCodeBench Leaderboard</title><meta charset="UTF-8"/><meta name="viewport" content="width=device-width,initial-scale=1"/><meta name="theme-color" content="#000000"/><meta name="description" content="LiveCodeBench Leaderboard"/><link rel="stylesheet" href="bootstrap.min.css"/><link rel="stylesheet" href="./css/bulma.min.css"/><link rel="stylesheet" href="./css/bulma-carousel.min.css"/><link rel="stylesheet" href="./css/bulma-slider.min.css"/><link rel="stylesheet" href="./css/fontawesome.all.min.css"/><link rel="stylesheet" href="https://cdn.jsdelivr.net/gh/jpswalsh/academicons@1/css/academicons.min.css"/><link rel="stylesheet" href="./css/index.css"/><link rel="icon" href="./images/favicon.svg"/><script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script><script defer="defer" src="./js/fontawesome.all.min.js"></script><script src="./js/bulma-carousel.min.js"></script><script src="./js/bulma-slider.min.js"></script><script src="./js/index.js"></script><script defer="defer" src="./static/js/main.081509d5.js"></script><link href="./static/css/main.be588df3.css" rel="stylesheet"></head><body><noscript>You need to enable JavaScript to run this app.</noscript><div id="root"></div></body></html>
1+
<!doctype html><html lang="en"><head><title>LiveCodeBench Leaderboard</title><meta charset="UTF-8"/><meta name="viewport" content="width=device-width,initial-scale=1"/><meta name="theme-color" content="#000000"/><meta name="description" content="LiveCodeBench Leaderboard"/><link rel="stylesheet" href="bootstrap.min.css"/><link rel="stylesheet" href="./css/bulma.min.css"/><link rel="stylesheet" href="./css/bulma-carousel.min.css"/><link rel="stylesheet" href="./css/bulma-slider.min.css"/><link rel="stylesheet" href="./css/fontawesome.all.min.css"/><link rel="stylesheet" href="https://cdn.jsdelivr.net/gh/jpswalsh/academicons@1/css/academicons.min.css"/><link rel="stylesheet" href="./css/index.css"/><link rel="icon" href="./images/favicon.svg"/><script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script><script defer="defer" src="./js/fontawesome.all.min.js"></script><script src="./js/bulma-carousel.min.js"></script><script src="./js/bulma-slider.min.js"></script><script src="./js/index.js"></script><script defer="defer" src="./static/js/main.e1001e8a.js"></script><link href="./static/css/main.be588df3.css" rel="stylesheet"></head><body><noscript>You need to enable JavaScript to run this app.</noscript><div id="root"></div></body></html>
Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
File renamed without changes.
Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/leaderboardLib.tsx

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -146,8 +146,8 @@ function getLeaderboard(
146146
if (performances[0].hasOwnProperty("Pass@1-COT")) {
147147
let output = {
148148
Model: model.model_repr,
149-
"Release Date":
150-
"Release Date: " + new Date(model.release_date).toLocaleDateString(),
149+
"Estimated Cutoff For LiveCodeBench":
150+
"Estimated Cutoff For LiveCodeBench: " + new Date(model.release_date).toLocaleDateString(),
151151
Contaminated: model.release_date >= start,
152152
"Pass@1": cot_pass.toString() === "NaN" ? -1 : cot_pass,
153153
"Pass@1 (no COT)": exec_pass.toString() === "NaN" ? -1 : exec_pass,
@@ -157,8 +157,8 @@ function getLeaderboard(
157157
else {
158158
let output = {
159159
Model: model.model_repr,
160-
"Release Date":
161-
"Release Date: " + new Date(model.release_date).toLocaleDateString(),
160+
"Estimated Cutoff For LiveCodeBench":
161+
"Estimated Cutoff For LiveCodeBench: " + new Date(model.release_date).toLocaleDateString(),
162162
Contaminated: model.release_date >= start,
163163
"Pass@1": average_pass.toString() === "NaN" ? -1 : average_pass,
164164
"Easy-Pass@1": easy_pass.toString() === "NaN" ? -1 : easy_pass,
@@ -240,7 +240,7 @@ function getColumnDefs(columnNames: Array<string>, modelsDict: any) {
240240
suppressMovable: true,
241241
cellClass: 'suppress-movable-col',
242242
flex: 2,
243-
tooltipField: "Release Date",
243+
tooltipField: "Estimated Cutoff For LiveCodeBench",
244244
cellRenderer: (params: any) => {
245245
return modelsDict[params.value].link ? (
246246
<a
@@ -256,7 +256,7 @@ function getColumnDefs(columnNames: Array<string>, modelsDict: any) {
256256
},
257257
}
258258

259-
case "Release Date":
259+
case "Estimated Cutoff For LiveCodeBench":
260260
return null
261261

262262
case "Contaminated":

src/mocks/performances_execution.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -99737,21 +99737,21 @@
9973799737
"model_repr": "Claude-3-Opus",
9973899738
"model_style": "AnthropicMessage",
9973999739
"release_date": 1682838000000,
99740-
"link": "https://www.anthropic.com/index/claude-3"
99740+
"link": "https://www.anthropic.com/claude"
9974199741
},
9974299742
{
9974399743
"model_name": "claude-3-sonnet-20240229",
9974499744
"model_repr": "Claude-3-Sonnet",
9974599745
"model_style": "AnthropicMessage",
9974699746
"release_date": 1682838000000,
99747-
"link": "https://www.anthropic.com/index/claude-3"
99747+
"link": "https://www.anthropic.com/claude"
9974899748
},
9974999749
{
9975099750
"model_name": "claude-3-haiku-20240307",
9975199751
"model_repr": "Claude-3-Haiku",
9975299752
"model_style": "AnthropicMessage",
9975399753
"release_date": 1682838000000,
99754-
"link": "https://www.anthropic.com/index/claude-3"
99754+
"link": "https://www.anthropic.com/claude"
9975599755
},
9975699756
{
9975799757
"model_name": "gemini-pro",

src/mocks/performances_generation.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -128070,7 +128070,7 @@
128070128070
"model_repr": "DBRX-Ins",
128071128071
"model_style": "DataBricks",
128072128072
"release_date": 1672560000000,
128073-
"link": "https://huggingface.co/databricks/databricks-dbrx-instruct"
128073+
"link": "https://huggingface.co/databricks/dbrx-instruct"
128074128074
},
128075128075
{
128076128076
"model_name": "gpt-3.5-turbo-0301",
@@ -128126,21 +128126,21 @@
128126128126
"model_repr": "Claude-3-Opus",
128127128127
"model_style": "AnthropicMessage",
128128128128
"release_date": 1682838000000,
128129-
"link": "https://www.anthropic.com/index/claude-3"
128129+
"link": "https://www.anthropic.com/claude"
128130128130
},
128131128131
{
128132128132
"model_name": "claude-3-sonnet-20240229",
128133128133
"model_repr": "Claude-3-Sonnet",
128134128134
"model_style": "AnthropicMessage",
128135128135
"release_date": 1682838000000,
128136-
"link": "https://www.anthropic.com/index/claude-3"
128136+
"link": "https://www.anthropic.com/claude"
128137128137
},
128138128138
{
128139128139
"model_name": "claude-3-haiku-20240307",
128140128140
"model_repr": "Claude-3-Haiku",
128141128141
"model_style": "AnthropicMessage",
128142128142
"release_date": 1682838000000,
128143-
"link": "https://www.anthropic.com/index/claude-3"
128143+
"link": "https://www.anthropic.com/claude"
128144128144
},
128145128145
{
128146128146
"model_name": "gemini-pro",

src/mocks/performances_repair.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -89670,7 +89670,7 @@
8967089670
"model_repr": "DBRX-Ins",
8967189671
"model_style": "DataBricks",
8967289672
"release_date": 1672560000000,
89673-
"link": "https://huggingface.co/databricks/databricks-dbrx-instruct"
89673+
"link": "https://huggingface.co/databricks/dbrx-instruct"
8967489674
},
8967589675
{
8967689676
"model_name": "gpt-3.5-turbo-0301",
@@ -89726,21 +89726,21 @@
8972689726
"model_repr": "Claude-3-Opus",
8972789727
"model_style": "AnthropicMessage",
8972889728
"release_date": 1682838000000,
89729-
"link": "https://www.anthropic.com/index/claude-3"
89729+
"link": "https://www.anthropic.com/claude"
8973089730
},
8973189731
{
8973289732
"model_name": "claude-3-sonnet-20240229",
8973389733
"model_repr": "Claude-3-Sonnet",
8973489734
"model_style": "AnthropicMessage",
8973589735
"release_date": 1682838000000,
89736-
"link": "https://www.anthropic.com/index/claude-3"
89736+
"link": "https://www.anthropic.com/claude"
8973789737
},
8973889738
{
8973989739
"model_name": "claude-3-haiku-20240307",
8974089740
"model_repr": "Claude-3-Haiku",
8974189741
"model_style": "AnthropicMessage",
8974289742
"release_date": 1682838000000,
89743-
"link": "https://www.anthropic.com/index/claude-3"
89743+
"link": "https://www.anthropic.com/claude"
8974489744
},
8974589745
{
8974689746
"model_name": "gemini-pro",

src/mocks/performances_testgen.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -98870,7 +98870,7 @@
9887098870
"model_repr": "DBRX-Ins",
9887198871
"model_style": "DataBricks",
9887298872
"release_date": 1672560000000,
98873-
"link": "https://huggingface.co/databricks/databricks-dbrx-instruct"
98873+
"link": "https://huggingface.co/databricks/dbrx-instruct"
9887498874
},
9887598875
{
9887698876
"model_name": "gpt-3.5-turbo-0301",
@@ -98926,21 +98926,21 @@
9892698926
"model_repr": "Claude-3-Opus",
9892798927
"model_style": "AnthropicMessage",
9892898928
"release_date": 1682838000000,
98929-
"link": "https://www.anthropic.com/index/claude-3"
98929+
"link": "https://www.anthropic.com/claude"
9893098930
},
9893198931
{
9893298932
"model_name": "claude-3-sonnet-20240229",
9893398933
"model_repr": "Claude-3-Sonnet",
9893498934
"model_style": "AnthropicMessage",
9893598935
"release_date": 1682838000000,
98936-
"link": "https://www.anthropic.com/index/claude-3"
98936+
"link": "https://www.anthropic.com/claude"
9893798937
},
9893898938
{
9893998939
"model_name": "claude-3-haiku-20240307",
9894098940
"model_repr": "Claude-3-Haiku",
9894198941
"model_style": "AnthropicMessage",
9894298942
"release_date": 1682838000000,
98943-
"link": "https://www.anthropic.com/index/claude-3"
98943+
"link": "https://www.anthropic.com/claude"
9894498944
},
9894598945
{
9894698946
"model_name": "gemini-pro",

0 commit comments

Comments
 (0)