Spaces:
Sleeping
Sleeping
Update inference.py
Browse files- inference.py +1 -1
inference.py
CHANGED
@@ -61,7 +61,7 @@ def prediction(image):
|
|
61 |
draw = ImageDraw.Draw(image, "RGBA")
|
62 |
font = ImageFont.load_default()
|
63 |
|
64 |
-
for prediction, box, confidence in zip(
|
65 |
draw.rectangle(box)
|
66 |
draw.text((box[0]+10, box[1]-10), text=prediction+ ", "+ str(confidence), font=font, fill="black", font_size="15")
|
67 |
|
|
|
61 |
draw = ImageDraw.Draw(image, "RGBA")
|
62 |
font = ImageFont.load_default()
|
63 |
|
64 |
+
for prediction, box, confidence in zip(predictions, token_boxes, confidence_scores):
|
65 |
draw.rectangle(box)
|
66 |
draw.text((box[0]+10, box[1]-10), text=prediction+ ", "+ str(confidence), font=font, fill="black", font_size="15")
|
67 |
|