Updated comments

This commit is contained in:
Prianka Liz Kariat 2023-01-06 13:46:37 +05:30
parent 0e8909497b
commit 387805f724

View File

@ -82,7 +82,7 @@ NS_SWIFT_NAME(ClassificationResult)
@property(nonatomic, readonly) NSArray<MPPClassifications *> *classifications; @property(nonatomic, readonly) NSArray<MPPClassifications *> *classifications;
/** The optional timestamp (in milliseconds) of the start of the chunk of data corresponding to /** 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 time stamp. This is * 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 * 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 * 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. * this, the input data is split into multiple chunks starting at different timestamps.
@ -107,7 +107,7 @@ NS_SWIFT_NAME(ClassificationResult)
* *
* @param classifications An Array of `MPPClassifications` objects containing the predicted * @param classifications An Array of `MPPClassifications` objects containing the predicted
* categories for each head of the model. * categories for each head of the model.
* @param timeStampMs The timestamp (in milliseconds) of the start of the chunk of data * @param timestampMs The timestamp (in milliseconds) of the start of the chunk of data
* corresponding to these results. * corresponding to these results.
* *
* @return An instance of `MPPClassificationResult` initialized with the given array of * @return An instance of `MPPClassificationResult` initialized with the given array of