InceptionSortResults Method |
https://www.emgu.com
Sort the result from the most likely to the less likely
Namespace:
Emgu.TF.Lite.Models
Assembly:
Emgu.TF.Lite.Models (in Emgu.TF.Lite.Models.dll) Version: 2.19.0.1709+574f567263f3c76bb77304b9eeb79ab6660ba101
Syntaxpublic InceptionRecognitionResult[] SortResults(
float[] probabilities
)
Public Function SortResults (
probabilities As Single()
) As InceptionRecognitionResult()
public:
array<InceptionRecognitionResult^>^ SortResults(
array<float>^ probabilities
)
member SortResults :
probabilities : float32[] -> InceptionRecognitionResult[]
Parameters
- probabilities
- Type: SystemSingle
The probability for the classes, this should be the values of the output tensor
Return Value
Type:
InceptionRecognitionResultThe recognition result, sorted by likelihood.
See Also