@@ -20,6 +20,10 @@ devices. To get a TensorFlow Lite model:
2020- Use a pre-built model, such as one of the [ official TensorFlow Lite models] ( https://www.tensorflow.org/lite/models ) {:.external}
2121- [ Convert a TensorFlow model, Keras model, or concrete function to TensorFlow Lite.] ( https://www.tensorflow.org/lite/convert ) {:.external}
2222
23+ Note that in the absence of a maintained TensorFlow Lite library for Dart, you
24+ will need to integrate with the native TensorFlow Lite library for your
25+ platforms. This integration is not documented here.
26+
2327## Before you begin
2428
25291 . [ Install and initialize the Firebase SDKs for Flutter] ( /docs/flutter/setup )
@@ -120,14 +124,10 @@ so at any point before you need to use the model.
120124## 3. Perform inference on input data
121125
122126Now that you have your model file on the device you can use it with the
123- TensorFlow Lite interpreter to perform inference. For this, you have several
124- options:
125-
126- - The [native TensorFlow Lite libraries](https://www.tensorflow.org/lite){:.external}
127- for iOS and Android.
128- - One of the community-developed Flutter plugins, such as
129- [`tflite_flutter`](https://pub.dev/packages/tflite_flutter){:.external} or
130- [`tflite`](https://pub.dev/packages/tflite){:.external}.
127+ TensorFlow Lite interpreter to perform inference. In the absence of a maintained
128+ TensorFlow Lite library for Dart, you will need to integrate with the
129+ [native TensorFlow Lite libraries](https://www.tensorflow.org/lite){:.external}
130+ for iOS and Android.
131131
132132
133133## Appendix: Model security {:#model_security}
0 commit comments