ClassificationResult
class ClassificationResult : NSObjectRepresents the classification results of a model. Typically used as a result for classification tasks.
- 
                  
                  An Array of Classificationsobjects containing the predicted categories for each head of the model.DeclarationSwift var classifications: [Classifications] { get }
- 
                  
                  The optional timestamp (in milliseconds) of the start of the chunk of data corresponding to these results. If it is set to the value -1, it signifies the absence of a timestamp. This is only used for classification on time series (e.g. audio classification). In these use cases, the amount of data to process might exceed the maximum size that the model can process: to solve this, the input data is split into multiple chunks starting at different timestamps. DeclarationSwift var timestampInMilliseconds: Int { get }
- 
                  
                  Initializes a new ClassificationResultwith the given array of classifications and time stamp (in milliseconds).DeclarationSwift init(classifications: [Classifications], timestampInMilliseconds: Int)ParametersclassificationsAn Array of Classificationsobjects containing the predicted categories for each head of the model.timestampInMillisecondsThe timestamp (in milliseconds) of the start of the chunk of data corresponding to these results. Return ValueAn instance of ClassificationResultinitialized with the given array of classifications and timestamp (in milliseconds).
- 
                  
                  Undocumented 
- 
                  
                  Undocumented