| Method and Description |
|---|
| org.tensorflow.lite.Interpreter.modifyGraphWithDelegate(Delegate)
Prefer using
Interpreter.Options.addDelegate(org.tensorflow.lite.Delegate) to provide delegates at creation time.
This method will be removed in a future release. |
| org.tensorflow.lite.Interpreter.setNumThreads(int)
Prefer using
Interpreter.Options.setNumThreads(int) directly for controlling thread
multi-threading. This method will be removed in a future release. |
| org.tensorflow.lite.TensorFlowLite.version()
Prefer using
or #schemaVersion(). |
| Constructor and Description |
|---|
| org.tensorflow.lite.Interpreter(ByteBuffer, int)
Prefer using the
Interpreter(ByteBuffer,Options) constructor. This
method will be removed in a future release. |
| org.tensorflow.lite.Interpreter(File, int)
Prefer using the
Interpreter(File,Options) constructor. This method will
be removed in a future release. |
| org.tensorflow.lite.Interpreter(MappedByteBuffer)
Prefer using the
Interpreter(ByteBuffer,Options) constructor. This
method will be removed in a future release. |