From 4110f52572d4dc100f022cf75918be78e6f4d6f9 Mon Sep 17 00:00:00 2001 From: benoitvx Date: Tue, 23 Jun 2026 15:59:10 +0200 Subject: [PATCH] fix(ci): rapport WER en Markdown (score all --format markdown) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Le step Scoring WER appelait `score all` sans --format → sortie TSV (tabulations) écrite dans un .md, illisible sur le rendu Hugging Face. Le formateur markdown existant produit de vraies tables pipe. One-liner. Co-Authored-By: Claude Opus 4.8 (1M context) --- .github/workflows/bench-remote.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/bench-remote.yml b/.github/workflows/bench-remote.yml index 2b99279..6b93b45 100644 --- a/.github/workflows/bench-remote.yml +++ b/.github/workflows/bench-remote.yml @@ -89,7 +89,7 @@ jobs: echo "- providers: $PROVIDERS_INPUT" echo } > "$REPORT" - uv run eval-transcript score all --normalization standard_numbers >> "$REPORT" + uv run eval-transcript score all --normalization standard_numbers --format markdown >> "$REPORT" cat "$REPORT" - name: Resultats vers HF (transcripts officiels + rapport)