Hi Klemen
Thank you for your response. The blobconverter api works now.
I have been using the blobconverter api to generate .blob files for our system as the modelconverter api still outputs .superblob files even when I pass the superblob=False argument. I have attached the code snippet below:
from modelconverter import convert
converted_model = convert.RVC2( api_key=HUBAI_API_KEY,path="yolov6n.pt", name="YOLOv6 nano VOC", description_short="Trained YOLOv6 nano object detection model on VOC dataset.", yolo_version="yolov6r3", superblob=False, yolo_input_shape="640 640", yolo_class_names=labels, tasks=["OBJECT_DETECTION"], license_type="MIT", is_public=False)
We plan to move to the .superblob NNArchive format soon, but for the time being we would still need our models in .blob format.