Removed extra space between param comments

This commit is contained in:
Prianka Liz Kariat 2023-01-06 13:32:27 +05:30
parent 3cdb54e29d
commit fa9ec90186
5 changed files with 0 additions and 9 deletions

View File

@ -47,11 +47,8 @@ NS_SWIFT_NAME(ClassificationCategory)
* Initializes a new `MPPCategory` with the given index, score, category name and display name. * Initializes a new `MPPCategory` with the given index, score, category name and display name.
* *
* @param index The index of the label in the corresponding label file. * @param index The index of the label in the corresponding label file.
*
* @param score The probability score of this label category. * @param score The probability score of this label category.
*
* @param categoryName The label of this category object. * @param categoryName The label of this category object.
*
* @param displayName The display name of the label. * @param displayName The display name of the label.
* *
* @return An instance of `MPPCategory` initialized with the given index, score, category name and * @return An instance of `MPPCategory` initialized with the given index, score, category name and

View File

@ -103,7 +103,6 @@ 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.
* *

View File

@ -50,7 +50,6 @@ NS_ASSUME_NONNULL_BEGIN
* asynchronous modes of operation. * asynchronous modes of operation.
* *
* @param graphConfig A mediapipe task graph config proto. * @param graphConfig A mediapipe task graph config proto.
*
* @param packetsCallback An optional C++ callback function that takes a list of output packets as * @param packetsCallback An optional C++ callback function that takes a list of output packets as
* the input argument. If provided, the callback must in turn call the block provided by the user in * the input argument. If provided, the callback must in turn call the block provided by the user in
* the appropriate task options. * the appropriate task options.

View File

@ -58,7 +58,6 @@ NS_SWIFT_NAME(TextClassifier)
* file stored locally on the device and the default `MPPTextClassifierOptions`. * file stored locally on the device and the default `MPPTextClassifierOptions`.
* *
* @param modelPath An absolute path to a TensorFlow Lite model file stored locally on the device. * @param modelPath An absolute path to a TensorFlow Lite model file stored locally on the device.
*
* @param error An optional error parameter populated when there is an error in initializing * @param error An optional error parameter populated when there is an error in initializing
* the text classifier. * the text classifier.
* *
@ -72,7 +71,6 @@ NS_SWIFT_NAME(TextClassifier)
* *
* @param options The options of type `MPPTextClassifierOptions` to use for configuring the * @param options The options of type `MPPTextClassifierOptions` to use for configuring the
* `MPPTextClassifier`. * `MPPTextClassifier`.
*
* @param error An optional error parameter populated when there is an error in initializing * @param error An optional error parameter populated when there is an error in initializing
* the text classifier. * the text classifier.
* *
@ -85,7 +83,6 @@ NS_SWIFT_NAME(TextClassifier)
* Performs classification on the input text. * Performs classification on the input text.
* *
* @param text The `NSString` on which classification is to be performed. * @param text The `NSString` on which classification is to be performed.
*
* @param error An optional error parameter populated when there is an error in performing * @param error An optional error parameter populated when there is an error in performing
* classification on the input text. * classification on the input text.
* *

View File

@ -31,7 +31,6 @@ NS_SWIFT_NAME(TextClassifierResult)
* *
* @param classificationResult The `MPPClassificationResult` instance containing one set of results * @param classificationResult The `MPPClassificationResult` instance containing one set of results
* per classifier head. * per classifier head.
*
* @param timeStampMs The time stamp for this result. * @param timeStampMs The time stamp for this result.
* *
* @return An instance of `MPPTextClassifierResult` initialized with the given * @return An instance of `MPPTextClassifierResult` initialized with the given