Viewing profile — rajatmonga
rajatmonga
HN member- Joined
- Tue, Aug 30, 2016, 11:00 PM UTC
- HN karma
- 81
- Public activity
- 9 items
- HN profile
- View on Hacker News ↗
About rajatmonga
No profile information was provided.
Recent public activity
-
comment
Comment #15706308
Agree, that is a big problem that we are working hard to solve. It isn't solved in this release, but it is high up on our task list.
-
comment
Comment #15702089
Yes, it does have auto differentiation from day one. There's also a new autograd like functional API as part of eager. See https://research.googleblog.com/2017/10/eager-execution-i…
-
comment
Comment #15701914
1. The code is standard C/C++ with minimal dependencies so it should be buildable on even non-standard platforms. Linux is easy. 2. The interpreter is more optimized for being low …
-
comment
Comment #15701849
The current examples talk about Android/iPhone, however the core runtime is pretty lightweight with the goal of supporting all kinds of embedded products. Do let us know if you bui…
-
comment
Comment #15699945
With TensorFlow and TF Lite we are looking to provide a great experience across all platforms, and are exploring ways to provide a simpler experience with good acceleration on iOS …
-
comment
Comment #15699921
XLA for AOT is useful for cases when you know exactly what architecture you are shipping to, and are ok updating the code whenever the model changes. TF Lite addresses the segment …
-
comment
Comment #15699886
TF Lite supports Android NN API that allows each phone to accelerate these models leveraging the custom accelerator on the phone.
-
comment
Comment #15699417
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…
-
comment
Comment #15699231
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…