mirror of
https://github.com/wassname/moral-maps.git
synced 2026-09-09 11:27:22 +08:00
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:
co-authored by
Claude Sonnet 4.6
parent
1b145d6f34
commit
9b4e094724
+1
-1
@@ -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]
|
||||
|
||||
Reference in New Issue
Block a user