From 7a706fb197949cbcc340daecfc4c64730cb9f3d4 Mon Sep 17 00:00:00 2001 From: zhangxinyuehfad <59153331+zhangxinyuehfad@users.noreply.github.com> Date: Mon, 20 Apr 2026 11:13:14 +0800 Subject: [PATCH] [v0.18.0][CI] fix report_template.md (#8429) ### What this PR does / why we need it? fix report_template.md the error caused by https://github.com/vllm-project/vllm-ascend/pull/8340 Signed-off-by: hfadzxy --- tests/e2e/models/report_template.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/e2e/models/report_template.md b/tests/e2e/models/report_template.md index 630c4f18..088744d1 100644 --- a/tests/e2e/models/report_template.md +++ b/tests/e2e/models/report_template.md @@ -30,5 +30,5 @@ lm_eval --model {{ model_type }} --model_args $MODEL_ARGS \ | Task | Metric | Value | Stderr | |-----------------------|-------------|----------:|-------:| {% for row in rows -%} -| {{ row.task }} | {{ row.metric }} | {{ row.value }} | ± {{ "%.4f" \| format(row.stderr \| float) }} | +| {{ row.task }} | {{ row.metric }} | {{ row.value }} | ± {{ "%.4f" | format(row.stderr | float) }} | {% endfor %}