Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
|
@@ -22,7 +22,7 @@ def create_solutions(image_urls, all_bboxes, all_bboxes2):
|
|
| 22 |
img_id =1
|
| 23 |
box_id =1
|
| 24 |
cat_id =1
|
| 25 |
-
for image_url, bbox, bbox2 in zip(
|
| 26 |
|
| 27 |
for subbox, subbox2 in zip(bbox, bbox2):
|
| 28 |
|
|
|
|
| 22 |
img_id =1
|
| 23 |
box_id =1
|
| 24 |
cat_id =1
|
| 25 |
+
for image_url, bbox, bbox2 in zip(image_urls, bboxes, bboxes2): # Loop through each image ID and its corresponding prediction
|
| 26 |
|
| 27 |
for subbox, subbox2 in zip(bbox, bbox2):
|
| 28 |
|