Formats
CreateML JSON

CreateML JSON

Apple's CreateML and Turi Create tools need a special JSON format for object detection tasks.
Formats

CreateML JSON

Below, we show how to convert data to and from

CreateML JSON

. We also list popular models that use the

CreateML JSON

data format. Our conversion tools are free to use.

CONVERT To
CONVERT From
EXAMPLE
Roboflow is a trusted solution for converting and managing your data. Today, over 100,000 datasets are managed on Roboflow, comprised of 100 million labeled and annotated images.

Once your data is in Roboflow, just add the link from your dataset and you're ready to go. We even include the code to export to common inference formats like TFLite, ONNX, and CoreML.

Below are pre-configured models that use the
CreateML JSON
data format
.

What computer vision models use CreateML JSON?

The

No items found.

models all use the

CreateML JSON

data format.

We don't currently have models that use this annotation format.
To see our entire list of computer vision models, check out the Roboflow Model Library.
createml.json
[
    {
        "image": "0001.jpg",
        "annotations": [
            {
                "label": "helmet",
                "coordinates": {
                    "x": 162.5,
                    "y": 45,
                    "width": 79,
                    "height": 88
                }
            },
            {
                "label": "person",
                "coordinates": {
                    "x": 145.5,
                    "y": 176,
                    "width": 251,
                    "height": 350
                }
            }
        ]
    }
]