From fe7fbc0b38b23a0639d816ffdd3fc64da0734c9b Mon Sep 17 00:00:00 2001 From: Prianka Liz Kariat Date: Thu, 15 Dec 2022 10:21:14 +0530 Subject: [PATCH] Fixed comment --- mediapipe/tasks/ios/core/sources/MPPTaskOptions.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/mediapipe/tasks/ios/core/sources/MPPTaskOptions.h b/mediapipe/tasks/ios/core/sources/MPPTaskOptions.h index 0195f3654..6a00de6f5 100644 --- a/mediapipe/tasks/ios/core/sources/MPPTaskOptions.h +++ b/mediapipe/tasks/ios/core/sources/MPPTaskOptions.h @@ -22,6 +22,7 @@ NS_ASSUME_NONNULL_BEGIN * this class. */ NS_SWIFT_NAME(TaskOptions) + @interface MPPTaskOptions : NSObject /** * 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 * 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 - * with TFLite Model Metadata[1] and associated files if they exist. Failure to provide the - * necessary metadata and associated files might result in errors. Check the [documentation] - * (https://www.tensorflow.org/lite/convert/metadata) for each task about the specific requirement. + * @discussion The external model file must be a single standalone TFLite file. It must be packed + * with TFLite Model Metadata[1] and associated files. Failure to provide the + * necessary metadata and associated files will result in errors. * * @param modelPath An absolute path to a TensorFlow Lite model file stored locally on the device. *