forked from dailystudio/tensorflow-lite-examples-android
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
a0efc38
commit a32b86a
Showing
1 changed file
with
5 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,9 @@ | ||
# TensorFlow Lite Android Examples | ||
# TensorFlow Lite Examples - Android | ||
|
||
This repository refactors and rewrites all the TensorFlow Lite examples included in TensorFlow official website. For more details, please refer to: | ||
This repository refactors and rewrites all the TensorFlow Lite examples included in the TensorFlow official website. For more details, please refer to: | ||
|
||
https://www.tensorflow.org/lite/examples | ||
|
||
The target of this repository is to provide you a much simpler way to use TensorFlow Lite on Android. It helps you easily understand how does a captured Bitmap, a small buffer of raw audio data, or a piece of text convert run in inference and how to represent those results on the user interface. | ||
|
||
The first step of this repository is almost accomplished. I have cleaned up the source codes from the official examples and simply refactor them to remove duplicated and low-performance parts. The next step is to refactor the code deeply, extract more reusable parts, and create a support library. |