Path: blob/master/site/en-snapshot/lite/guide/ios.md
25118 views
iOS quickstart
To get started with TensorFlow Lite on iOS, we recommend exploring the following example:
iOS image classification example
For an explanation of the source code, you should also read TensorFlow Lite iOS image classification.
This example app uses image classification to continuously classify whatever it sees from the device's rear-facing camera, displaying the top most probable classifications. It allows the user to choose between a floating point or quantized model and select the number of threads to perform inference on.
Note: Additional iOS applications demonstrating TensorFlow Lite in a variety of use cases are available in Examples.
Add TensorFlow Lite to your Swift or Objective-C project
TensorFlow Lite offers native iOS libraries written in Swift and Objective-C. Start writing your own iOS code using the Swift image classification example as a starting point.
The sections below demonstrate how to add TensorFlow Lite Swift or Objective-C to your project:
CocoaPods developers
In your Podfile
, add the TensorFlow Lite pod. Then, run pod install
.
Swift
Objective-C
Specifying versions
There are stable releases, and nightly releases available for both TensorFlowLiteSwift
and TensorFlowLiteObjC
pods. If you do not specify a version constraint as in the above examples, CocoaPods will pull the latest stable release by default.
You can also specify a version constraint. For example, if you wish to depend on version 2.10.0, you can write the dependency as:
This will ensure the latest available 2.x.y version of the TensorFlowLiteSwift
pod is used in your app. Alternatively, if you want to depend on the nightly builds, you can write:
From 2.4.0 version and latest nightly releases, by default GPU and Core ML delegates are excluded from the pod to reduce the binary size. You can include them by specifying subspec:
This will allow you to use the latest features added to TensorFlow Lite. Note that once the Podfile.lock
file is created when you run pod install
command for the first time, the nightly library version will be locked at the current date's version. If you wish to update the nightly library to the newer one, you should run pod update
command.
For more information on different ways of specifying version constraints, see Specifying pod versions.
Bazel developers
In your BUILD
file, add the TensorFlowLite
dependency to your target.
Swift
Objective-C
C/C++ API
Alternatively, you can use C API or C++ API
Import the library
For Swift files, import the TensorFlow Lite module:
For Objective-C files, import the umbrella header:
Or, the module if you set CLANG_ENABLE_MODULES = YES
in your Xcode project:
Note: For CocoaPods developers who want to import the Objective-C TensorFlow Lite module, you must also include use_frameworks!
in your Podfile
.