Mani Ramezan

Results 4 comments of Mani Ramezan

Update on this, with the latest Ultralytics, due to [this change](https://github.com/ultralytics/ultralytics/pull/18880), can't pass `nms=True` anymore when exporting coreml models. Is there an alternative solution for this? I've used `yolov8x-cls` but...

@pderrenger Thank you for the quick response. The main issue here is that the `names` is not a valid json format so it fails to parse: ```python from ultralytics import...

Thanks for the suggestion, but couldn't run the above code, received following error: ``` >>> names = json.loads(model.model.user_defined_metadata["names"]) Traceback (most recent call last): File "", line 1, in AttributeError: 'str'...

Thanks, yeah it includes the `names` and it works, the only problem here is that `names` is not a valid json, if you add following two lines: ```python import json...