Line: 1 to 1 | ||||||||
---|---|---|---|---|---|---|---|---|
The TinyML examples written in C++ | ||||||||
Changed: | ||||||||
< < | The TinyML examples in C++, ported to the ESP32 can be found at https://github.com/espressif/tflite-micro-esp-examples/tree/master/examples![]() The Hello World application | |||||||
> > | The TinyML examples in C++, ported to the ESP32 can be found at https://github.com/espressif/tflite-micro-esp-examples/tree/master/examples![]()
ArduinoFor the Arduino SDK (Software Development Kit) you can install the TensorFlowLite_ESP32 library, which does not only contain the TensforFlowLite library but also the examples
| |||||||
Changed: | ||||||||
< < | There you can also find procedure to get the examples compiled. Let's start with the hello_world example. This example uses a pre-built model that has gone through the training process and it has been quantized to reduce its size such that it can be loaded into the small micro-controller memory. Building, training and quantization is described at https://github.com/tensorflow/tflite-micro/tree/main/tensorflow/lite/micro/examples/hello_world![]() | |||||||
> > | ![]() The Hello World application with esp-idf | |||||||
Changed: | ||||||||
< < | We must first tell the idf.py that we are using an ESP32S3 chip: | |||||||
> > | Let's start with the hello_world example. This example uses a pre-built model that has gone through the training process and it has been quantized to reduce its size such that it can be loaded into the small micro-controller memory. Building, training and quantization is described at https://github.com/tensorflow/tflite-micro/tree/main/tensorflow/lite/micro/examples/hello_world![]() | |||||||
Added: | ||||||||
> > | We must first tell the idf.py that we are using an ESP32S3 chip: | |||||||
idf.py set-target esp32s3After that we may have to clean previous builds: | ||||||||
Line: 43 to 50 | ||||||||
| ||||||||
Added: | ||||||||
> > |
|