';
html += '
' + backtest.hit_rate + '%
命中率(Top5)
';
html += '
' + backtest.total_hits + '/' + backtest.total_tests + '
命中次数
';
html += '
' + (backtest.avg_rank || '—') + '
平均排名
';
// 新增指标:NDCG@5 和 MRR(百分比展示)
if (backtest.ndcg_5 !== undefined) {
html += '
' + (backtest.ndcg_5 * 100).toFixed(1) + '%
NDCG@5
';
}
if (backtest.mrr !== undefined) {
html += '
' + (backtest.mrr * 100).toFixed(1) + '%
MRR
';
}
// 转移概率阶数显示(来自11-05的transition_order字段)
if (analysis && analysis.transition_order !== undefined) {
html += '