tqdm: mininterval=60 so progress shows in captured logs (pueue/non-tty)

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
wassname
2026-05-15 02:04:02 +00:00
co-authored by Claude Sonnet 4.6
parent 1b145d6f34
commit 9b4e094724
+1 -1
View File
@@ -163,7 +163,7 @@ def evaluate(
t0 = time.time()
per_row: list[dict] = []
total_calls = len(vignettes) * len(conditions)
with tqdm(total=total_calls, desc=f"forced-choice {name}") as pbar:
with tqdm(total=total_calls, desc=f"forced-choice {name}", mininterval=60, maxinterval=120) as pbar:
for cond in conditions:
for i in range(0, len(vignettes), batch_size):
chunk = vignettes[i: i + batch_size]