Hello!
I have been converting custom yolov6r3 (nano) models to superblobs using the model converter api using the code snippet blow:
converted_model = convert.RVC2(api_key=LUXONIS_HUB_API_KEY,
path="best_ckpt.pt",
name="YOLOv6",
description_short="superblob",
yolo_version="yolov6r3",
yolo_input_shape="512 512",
superblob=True,
yolo_class_names=labels,
tasks=["OBJECT_DETECTION"],
license_type="MIT",
is_public=False
)
However the config file inside the NNarchive zip file shows that:
- The model is yolov6r2
- The confidence threshold is 0.5 ( I would like this to be 0.05)
- The reverse-channels is set to false.
Is the config file actually used for the superblob inference. Because I do see output confidences of 0.1, even though the config file mentions the threshold to be 0.5.
Is there a way to update the config file parameters, incase it is used for the inference.