Fetching Models
Where it All Begins
Last updated
Was this helpful?
Where it All Begins
Last updated
Was this helpful?
The very first step in using ML in your app is fetching a model. NatML supports fetching models from different sources:
is a platform for managing and deploying ML models.
NatML Hub provides a predictor catalog from which models can be fetched:
Predictors fetched from NatML are cached on-device, so your users only ever have to download the model once.
You will need a NatML access key to fetch models from Hub. for how to get your access key.
When you upload your model to , we will automatically convert your model to CoreML, ONNX, and TensorFlow Lite, making your model cross-platform.
NatML supports using (.mlmodel
), (.onnx
), and (.tflite
) models. Simply drag and drop the model file into your Unity project. The model file is imported as an MLModelData
instance.
There are restrictions on what ML model files can be used on which platform. for more info.