上QQ阅读APP看书,第一时间看更新
Hands-on with TensorFlow Lite
With TensorFlow Lite, you can use an existing model to quickly start building your first TensorFlow Lite-based application:
Using TensorFlow Lite in real time consists of four steps:
- In the first step, we need to either use an existing model or prepare our own model and train it.
- Once the model is ready, it needs to be converted into .tflite format using converters.
- Then, we can write ops on top of it for any kind of optimization.
- You can start writing your hello world project.
Let's jump straight into the code from here.