natsuite
Lightweight object classification model optimized for mobile applications.
Importing the Predictor
Follow the setup instructions on the predictor implementation.
Using the Predictor
// Fetch model data from NatML var modelData = await MLModelData.FromHub("@natsuite/mobilenet-v2"); // Deserialize the model var model = await MLEdgeModel.Create(modelData); // Create the predictor var predictor = new MobileNetv2Predictor(model, modelData.labels);