Classifications
class Classifications : NSObjectRepresents the list of classification for a given classifier head. Typically used as a result for classification tasks.
- 
                  
                  The index of the classifier head these entries refer to. This is useful for multi-head models. DeclarationSwift var headIndex: Int { get }
- 
                  
                  The optional name of the classifier head, which is the corresponding tensor metadata name. DeclarationSwift var headName: String? { get }
- 
                  
                  An array of Categoryobjects containing the predicted categories.DeclarationSwift var categories: [ResultCategory] { get }
- 
                  
                  Initializes a new Classificationsobject with the given head index and array of categories. Head name is initialized tonil.DeclarationSwift convenience init(head headIndex: Int, categories: [ResultCategory])ParametersheadIndexThe index of the classifier head. categoriesAn array of Categoryobjects containing the predicted categories.Return ValueAn instance of Classificationsinitialized with the given head index and array of categories.
- 
                  
                  Initializes a new Classificationswith the given head index, head name and array of categories.DeclarationSwift init(head headIndex: Int, headName: String?, categories: [ResultCategory])ParametersheadIndexThe index of the classifier head. headNameThe name of the classifier head, which is the corresponding tensor metadata name. categoriesAn array of Categoryobjects containing the predicted categories.Return ValueAn object of Classificationsinitialized with the given head index, head name and array of categories.
- 
                  
                  Undocumented 
- 
                  
                  Undocumented