Spaces:
Runtime error
Runtime error
owaiskha9654
commited on
Commit
·
3ee6757
1
Parent(s):
03d7b11
Update app.py
Browse files
app.py
CHANGED
@@ -35,7 +35,7 @@ def yolov8_inference(
|
|
35 |
print("Boxexes",results[0].boxes.boxes)
|
36 |
object_prediction_list = []
|
37 |
outputs = results[0].boxes.boxes.numpy()
|
38 |
-
if len(outputs)!=0
|
39 |
for pred in outputs:
|
40 |
print(type(pred),pred)
|
41 |
x1, y1, x2, y2 = (
|
|
|
35 |
print("Boxexes",results[0].boxes.boxes)
|
36 |
object_prediction_list = []
|
37 |
outputs = results[0].boxes.boxes.numpy()
|
38 |
+
if len(outputs)!=0:
|
39 |
for pred in outputs:
|
40 |
print(type(pred),pred)
|
41 |
x1, y1, x2, y2 = (
|