- Machine Learning Projects for Mobile Applications
- Karthikeyan NG
- 101字
- 2021-06-10 19:41:39
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.