mp-02 commited on
Commit
dd3e908
·
verified ·
1 Parent(s): c951098

Update inference.py

Browse files
Files changed (1) hide show
  1. 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(true_predictions, true_boxes, true_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
 
 
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