- Edited
I 'm training a model for the OAK-D Lite camera which is RVC2. I have taken some "person" samples from the COCO 2017 dataset and added two more classes for a test using YOLO v11:
model = YOLO("yolo11n.pt")
results = model.train(data=f"{working_directory}/dataset.yaml", epochs=200, imgsz=416, classes=[0,1,4])
I want to convert this using the hub but I'm having some issues: using the old https://tools.luxonis.com/ website everything is good, but I simply cannot make the conversion using the new tools work.
The error is RuntimeError: BlobReader error: File does not seem to be a supported neural network blob
when using the superblob. Do I need to switch depthai to v3 for the superblob to work? I've tried directly converting the resulting .pt file on the hub and downloading the blob and downloading the onnx and converting it with modelconverter hub convert rvc2 --path "${working_directory}/best.onnx.tar.xz"