Fixed comment

This commit is contained in:
Prianka Liz Kariat 2022-12-15 10:21:14 +05:30
parent bf91c52407
commit fe7fbc0b38

View File

@ -22,6 +22,7 @@ NS_ASSUME_NONNULL_BEGIN
* this class. * this class.
*/ */
NS_SWIFT_NAME(TaskOptions) NS_SWIFT_NAME(TaskOptions)
@interface MPPTaskOptions : NSObject <NSCopying> @interface MPPTaskOptions : NSObject <NSCopying>
/** /**
* Base options for configuring the Mediapipe task. * Base options for configuring the Mediapipe task.
@ -32,10 +33,9 @@ NS_SWIFT_NAME(TaskOptions)
* Initializes a new `MPPTaskOptions` with the absolute path to the model file * Initializes a new `MPPTaskOptions` with the absolute path to the model file
* stored locally on the device, set to the given the model path. * stored locally on the device, set to the given the model path.
* *
* @discussion The external model file must be a single standalone TFLite file. It could be packed * @discussion The external model file must be a single standalone TFLite file. It must be packed
* with TFLite Model Metadata[1] and associated files if they exist. Failure to provide the * with TFLite Model Metadata[1] and associated files. Failure to provide the
* necessary metadata and associated files might result in errors. Check the [documentation] * necessary metadata and associated files will result in errors.
* (https://www.tensorflow.org/lite/convert/metadata) for each task about the specific requirement.
* *
* @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.
* *