mirror of
https://github.com/All-Hands-AI/OpenHands.git
synced 2026-01-10 07:18:10 -05:00
Fix queue length on Macs (#3867)
This commit is contained in:
@@ -267,7 +267,7 @@ def run_evaluation(
|
||||
for _, instance in dataset.iterrows():
|
||||
instance_queue.put(instance)
|
||||
|
||||
total_instances = instance_queue.qsize()
|
||||
total_instances = len(dataset)
|
||||
pbar = tqdm(total=total_instances, desc='Instances processed')
|
||||
output_fp = open(output_file, 'a')
|
||||
|
||||
|
||||
Reference in New Issue
Block a user