ResultCategory
class ResultCategory : NSObject
Category is a util class that contains a label, its display name, a float value as score, and the index of the label in the corresponding label file. Typically it’s used as the result of classification tasks.
-
The index of the label in the corresponding label file. Set to -1 if the index is not set.
Declaration
Swift
var index: Int { get }
-
Confidence score for this class.
Declaration
Swift
var score: Float { get }
-
The label of this category object.
Declaration
Swift
var categoryName: String? { get }
-
The display name of the label, which may be translated for different locales. For example, a label, “apple”, may be translated into Spanish for display purpose, so that the display name is “manzana”.
Declaration
Swift
var displayName: String? { get }
-
Initializes a new
ResultCategory
with the given index, score, category name and display name.Declaration
Swift
init(index: Int, score: Float, categoryName: String?, displayName: String?)
Parameters
index
The index of the label in the corresponding label file.
score
The probability score of this label category.
categoryName
The label of this category object.
displayName
The display name of the label.
Return Value
An instance of
ResultCategory
initialized with the given index, score, category name and display name. -
Undocumented
-
Undocumented