Is this the next iteration of TensorFlow for Mobile? Is on-device training something planned for the future?
Also check out this post for more info and examples: https://research.googleblog.com/2017/11/on-device-conversati...
11–20 of 80 posts
Is this the next iteration of TensorFlow for Mobile? Is on-device training something planned for the future?
Also check out this post for more info and examples: https://research.googleblog.com/2017/11/on-device-conversati...
TensorFlow Lite is TensorFlow’s lightweight solution for mobile and embedded devices! TensorFlow has always run on many platforms, from racks of servers to tiny devices, but as the adoption of machine learning models has grown over the last few years, so has the need to deploy them on mobile and embedded devices. TensorFlow Lite enables low-latency inference of on-device machine learning models. Looking forward to yo…
TensorFlow Lite is TensorFlow’s lightweight solution for mobile and embedded devices! TensorFlow has always run on many platforms, from racks of servers to tiny devices, but as the adoption of machine learning models has grown over the last few years, so has the need to deploy them on mobile and embedded devices. TensorFlow Lite enables low-latency inference of on-device machine learning models. Looking forward to yo…
Didnt they announce this at Google I/O? Where it was supposed to be available that day
https://www.wired.com/2017/05/google-really-wants-put-ai-poc...
> “Google won't say much more about this new project. But it has revealed that TensorFlow Lite will be part of the primary TensorFlow open source project later this year”
Earlier quoted context omitted.
What tradeoffs did you make compared to the original?
A few tradeoffs we had to make: - As mentioned below - flatbuffers makes the startup time faster while trading off some flexibility - Smaller code size means trading off dependency on some libraries and broader support vs writing more things from scratch more focused on the user cases people care about
TensorFlow Lite is TensorFlow’s lightweight solution for mobile and embedded devices! TensorFlow has always run on many platforms, from racks of servers to tiny devices, but as the adoption of machine learning models has grown over the last few years, so has the need to deploy them on mobile and embedded devices. TensorFlow Lite enables low-latency inference of on-device machine learning models. Looking forward to yo…
Will this leverage the Pixel Visual Core SoC on a Pixel 2 device?
How does this compare to using XLA for AOT compilation?
TF Lite addresses the segment where you need more flexibility
- you ship single app to many types of devices
- would like to update the model independent of the code itself e.g. no change to Android APK, and update the model over the wire.
Even with this generality, TF Lite is still quite fast and lightweight as that was the focus building it up.