Last active
September 12, 2021 08:05
-
-
Save olokobayusuf/67532ef9edead6a2ca3093d505f3fe2e to your computer and use it in GitHub Desktop.
Make predictions with a NatML model.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// If you have some feature | |
Texture2D image = ...; | |
// You can predict easily | |
var (label, confidence) = predictor.Predict(image); | |
Debug.Log($"Image contains {label} with confidence {confidence}"); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment