Skip to content

Commit 7a7ffc2

Browse files
committed
Fix
1 parent 9dcfa03 commit 7a7ffc2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

evaluator.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ def __init__(self, dataset, path_to_data_dir, path_to_results_dir):
1919
def evaluate(self, model):
2020
all_image_ids, all_pred_bboxes, all_pred_labels, all_pred_probs = [], [], [], []
2121

22-
for batch_index, (image_id_batch, image_batch, scale_batch, _, _) in tqdm(enumerate(self.dataloader)):
22+
for batch_index, (image_id_batch, image_batch, scale_batch, _, _) in enumerate(tqdm(self.dataloader)):
2323
image_id = image_id_batch[0]
2424
image = image_batch[0].cuda()
2525
scale = scale_batch[0]

0 commit comments

Comments
 (0)