Skip to content

Commit 3668b79

Browse files
committed
Update
1 parent 3de3a52 commit 3668b79

File tree

1 file changed

+56
-3
lines changed

1 file changed

+56
-3
lines changed

leaderboard.html renamed to index.html

Lines changed: 56 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -83,6 +83,36 @@
8383
font-size: small;
8484
}
8585
}
86+
87+
/* ---------- Author & Affiliation ---------- */
88+
.paper-meta {
89+
font-size: 1.05rem; /* 默认字号(≈17 px) */
90+
line-height: 1.4;
91+
}
92+
93+
.author-line span,
94+
.affil-line span {
95+
white-space: nowrap; /* 避免名字/单位被拆行 */
96+
}
97+
98+
.author-line sup,
99+
.affil-line sup {
100+
font-size: 0.65em; /* 上标略小 */
101+
vertical-align: super;
102+
}
103+
104+
.author-line { font-weight: 600; } /* 姓名稍加粗 */
105+
.affil-line { font-weight: 400; }
106+
107+
@media (min-width: 1400px) { /* 超宽屏略放大 */
108+
.paper-meta { font-size: 1.15rem; }
109+
}
110+
111+
@media (max-width: 768px) { /* 移动端自适应缩放 */
112+
.paper-meta { font-size: 3.5vw; }
113+
.author-line,
114+
.affil-line { line-height: 1.3; }
115+
}
86116
</style>
87117
</head>
88118

@@ -97,6 +127,26 @@ <h3 class="fw-light text-nowrap">
97127
<small id="warning">Can Advanced LLMs Conquer Human's Hardest Code Competition?<br /></small>
98128
</h3>
99129

130+
<div class="paper-meta text-center my-3">
131+
<!-- 作者行 -->
132+
<div class="author-line">
133+
<span>Xiangyang Li<sup>*</sup></span>,
134+
<span>Xiaopeng Li<sup>*</sup></span>,
135+
<span>Kuicai Dong<sup></sup></span>,
136+
<span>Quanhu Zhang<sup></sup></span>,
137+
<span>Rongju Ruan<sup></sup></span>,
138+
<span>Xinyi Dai<sup></sup></span>,
139+
<span>Yasheng Wang<sup></sup></span>,
140+
<span>Ruiming Tang<sup></sup></span>
141+
142+
</div>
143+
144+
<!-- 单位行 -->
145+
<div class="affil-line text-muted mt-1">
146+
<span><sup></sup> Huawei Noah's Ark Lab</span>,
147+
</div>
148+
</div>
149+
100150
<div class="d-flex flex-row justify-content-center gap-3">
101151
<a href="https://github.com/Humanity-s-Last-Code-Exam/HLCE">
102152
<img src="https://img.shields.io/badge/github-%23121011.svg?style=for-the-badge&logo=github&logoColor=white" alt="github" class="img-fluid" />
@@ -286,8 +336,11 @@ <h3 class="text-center">Citation</h3>
286336
]);
287337

288338
const aggMap = new Map();
289-
const pass1Candidates = ['pass@1', 'pass1', 'pass@1 (%)'];
290-
const pass5Candidates = ['pass@5', 'pass5', 'pass@5 (%)'];
339+
// const pass1Candidates = ['Pass@1', 'pass1', 'pass@1 (%)'];
340+
// const pass5Candidates = ['pass@5', 'pass5', 'pass@5 (%)'];
341+
342+
pass1Candidates = ['Pass@1', 'pass@1', 'pass1', 'Pass@1 (%)', 'pass@1 (%)'];
343+
pass5Candidates = ['Pass@5', 'pass@5', 'pass5', 'Pass@5 (%)', 'pass@5 (%)'];
291344

292345
const accumulate = (rows) => {
293346
rows.forEach((row) => {
@@ -314,7 +367,7 @@ <h3 class="text-center">Citation</h3>
314367
URL: e.URL,
315368
}));
316369

317-
avgRows.sort((a, b) => safeNum(b['pass@1']) - safeNum(a['pass@1']));
370+
avgRows.sort((a, b) => safeNum(b['Pass@1']) - safeNum(a['Pass@1']));
318371
tableKeys = ['Model', 'Pass@1', 'Pass@5'];
319372
tableData = avgRows;
320373
sortState.clear();

0 commit comments

Comments
 (0)