Skip to content

Commit a5f82a2

Browse files
authored
Fix/yolov8 output names nn archive (#138)
* Change yolo output names in NN Archive * Add scipy * Remove scipy
1 parent 94a369a commit a5f82a2

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

requirements.txt

+1
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ PyYAML>=5.3.1
55
gcsfs
66
luxonis-ml[data,nn_archive,utils]>=0.6.1
77
onnx>=1.17.0
8+
numpy>=1.19.5,<1.27.0
89
onnxruntime>=1.20.1
910
onnxsim>=0.4.36
1011
s3fs

tools/yolo/yolov8_exporter.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ def __init__(
8989
imgsz,
9090
use_rvc2,
9191
subtype="yolov8",
92-
output_names=["output1_yolov8", "output2_yolov8", "output3_yolov8"],
92+
output_names=["output1_yolov6r2", "output2_yolov6r2", "output3_yolov6r2"],
9393
)
9494
self.load_model()
9595

0 commit comments

Comments
 (0)