Spaces:
Runtime error
Runtime error
Commit
·
b5c3d80
1
Parent(s):
eaa63a7
Update app.py
Browse files
app.py
CHANGED
@@ -100,7 +100,6 @@ def predict(image):
|
|
100 |
|
101 |
draw = ImageDraw.Draw(image)
|
102 |
font = ImageFont.load_default()
|
103 |
-
true_boxes,true_predictions = predict(image)
|
104 |
|
105 |
for prediction, box in zip(true_predictions, true_boxes):
|
106 |
predicted_label = iob_to_label(prediction)
|
|
|
100 |
|
101 |
draw = ImageDraw.Draw(image)
|
102 |
font = ImageFont.load_default()
|
|
|
103 |
|
104 |
for prediction, box in zip(true_predictions, true_boxes):
|
105 |
predicted_label = iob_to_label(prediction)
|