From 72acad3dd2d6a3c03b39f5471cbe3681cebbf6f8 Mon Sep 17 00:00:00 2001 From: Ronald Tse Date: Sat, 5 Sep 2026 15:35:38 +0200 Subject: [PATCH] =?UTF-8?q?fix(artifact-score):=20tqdm=20in=20the=20image?= =?UTF-8?q?=20=E2=80=94=20the=20vendored=20evaluator=20imports=20it?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit All 1,200 decodes completed and checkpointed, then the scoring import died on the missing tqdm. With resume the rerun scores without re-decoding. --- src/gpu/modal_score_artifact.py | 1 + 1 file changed, 1 insertion(+) diff --git a/src/gpu/modal_score_artifact.py b/src/gpu/modal_score_artifact.py index 6ff8779..7e0f333 100644 --- a/src/gpu/modal_score_artifact.py +++ b/src/gpu/modal_score_artifact.py @@ -25,6 +25,7 @@ "pyarrow>=14.0", "pyarabic>=0.6", "prettytable>=3.9", + "tqdm>=4.66", "pyyaml>=6.0", ) .add_local_dir(str(REPO_ROOT), "/root/interscript-ml", copy=True)