
LLM Ass Bench
const fmtDate = d => { const [y, mo, da] = d.split('-').map(Number); return isNaN(y) || isNaN(mo) || isNaN(da) ? d : new Date(y, mo - 1, da).toLocaleDateString('en-US', { year: 'numeric', month: 'short', day: 'numeric' …
以下正文同步自 Hacker News,版权归原站所有,已转换为易读排版。
';
const OPEN_ICON = '';
const fmtDate = d => { const [y, mo, da] = d.split('-').map(Number); return isNaN(y) || isNaN(mo) || isNaN(da) ? d : new Date(y, mo - 1, da).toLocaleDateString('en-US', { year: 'numeric', month: 'short', day: 'numeric' }); };
const models = (window.ASSBENCH_MODELS || []).map(m => {
const s = m.scores || {};
const judged = AXES.every(k => typeof s[k] === 'number');
return { ...m, scores: s, judged, total: judged ? AXES.reduce((t, k) => t + s[k], 0) : null, path: 'models/' + m.slug + '/index.html' };
}).sort((a, b) => (b.judged - a.judged) || ((b.total ?? 0) - (a.total ?? 0))); // ties keep models.js order
if (!models.length) {
document.getElementById('grid').innerHTML = 'No entries yet.
正文由 FLUX 从来源站点 RSS 同步,内容未经改写;遇到排版缺失或需要图片、视频时请以原文为准。