MPPClassificationResult
@interface MPPClassificationResult : 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.DeclarationObjective-C @property (nonatomic, readonly) NSArray<MPPClassifications *> *_Nonnull classifications;
- 
                  
                  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. DeclarationObjective-C @property (nonatomic, readonly) NSInteger timestampInMilliseconds;
- 
                  
                  Initializes a new ClassificationResultwith the given array of classifications and time stamp (in milliseconds).DeclarationObjective-C - (nonnull instancetype) initWithClassifications: (nonnull NSArray<MPPClassifications *> *)classifications timestampInMilliseconds:(NSInteger)timestampInMilliseconds;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 DeclarationObjective-C - (instancetype)init NS_UNAVAILABLE;
- 
                  
                  Undocumented DeclarationObjective-C + (instancetype)new NS_UNAVAILABLE;