Spaces:
Sleeping
Sleeping
Update tasks/image.py
Browse files- tasks/image.py +1 -1
tasks/image.py
CHANGED
@@ -109,7 +109,7 @@ async def evaluate_image(request: ImageEvaluationRequest):
|
|
109 |
true_boxes_list = [] # Flattened list of ground truth boxes
|
110 |
|
111 |
|
112 |
-
for example in tqdm(test_dataset, desc="Processing test dataset")
|
113 |
# Extract image and annotations
|
114 |
image = example["image"]
|
115 |
annotation = example.get("annotations", "").strip()
|
|
|
109 |
true_boxes_list = [] # Flattened list of ground truth boxes
|
110 |
|
111 |
|
112 |
+
for example in tqdm(test_dataset, desc="Processing test dataset"):
|
113 |
# Extract image and annotations
|
114 |
image = example["image"]
|
115 |
annotation = example.get("annotations", "").strip()
|