Using Predictors
In Three Simple Steps
Computer vision is perhaps the most common use case for machine learning. ML allows for solving some interesting vision tasks, like image classification, detection, segmentation, and so on. Across all of these tasks, the NatML workflow is relatively uniform:
Creating a Predictor
First, we create a model:
// Fetch the SSD Lite object detection model
var model = await MLEdgeModel.Create("@natsuite/ssd-lite");We can log the model to see what data it consumes and produces:
// Inspect the model
Debug.Log(model);
// Prints:
// MLEdgeModel
// Input: input.1: (1, 3, 300, 300) System.Single <-- INPUT IMAGE
// Output: 836: (1, 3000, 21) System.Single
// Output: 863: (1, 3000, 4) System.SingleThen we instantiate the predictor class for the model:
// Create the SSD Lite predictor
var predictor = new SSDLitePredictor(model);If you are using your own model file, you will have to write a predictor class implementation for it.
You will always want to create the model and predictor once, usually in your Start method, because it is a time-consuming process.
Making Predictions
To make a prediction, we simply need to call Predict on the predictor:
// Given an image...
Texture2D image = ...;
// Make a prediction
var results = predictor.Predict(imageFeature);Disposing the Predictor
Some predictors require explicit disposal when they are no longer needed. These predictors define a Dispose method:
// Dispose the predictor
predictor.Dispose(); // this may or may not exist, so refer to your predictor READMEOnce the predictor is disposed, the model MUST be disposed.
// Dispose the model
model.Dispose();Last updated
Was this helpful?