Difference: TinyMLHelloWorldC (1 vs. 3)

Revision 32023-11-19 - UliRaich

Line: 1 to 1
 
META TOPICPARENT name="ESP32CExamples"

The tinyML Hello World example

How does tinyML hello world work?

Changed:
<
<
The program takes a value between 0 and 2Π and outputs the corresponding sine value. Of course this could be simply done passing through the sin function of the mathematics library. For demo purposes a neural network is created and trained by feeding it 1000 angle and sin(angle) pairs training it what the sin function is supposed to do. The trained model is converted from TensorFlow to TensorFlow Lite format and finally 'quantized' replacing the float values of the output model by int8 values thus drastically reducing the size of the model. The final model is transformed into char array within a C++ source file. This source file can finally easily be included into a C++ program running on the target processor (ESP32).
>
>
The program takes a value between 0 and 2Π and outputs the corresponding sine value. Of course, this could be simply done passing through the sin function of the mathematics library. For demo purposes a neural network is created and trained by feeding it 1000 angle and sin(angle) pairs training it what the sin function is supposed to do. The trained model is converted from TensorFlow to TensorFlow Lite format and finally 'quantized' replacing the float values of the output model by int8 values thus drastically reducing the size of the model. The final model is transformed into a char array within a C++ source file. This source file can finally easily be included into a C++ program running on the target processor (ESP32).
 

Model Creation

The model creation process is described in https://github.com/tensorflow/tflite-micro/tree/main/tensorflow/lite/micro/examples. In order for this to work he build tool bazel must be installed. In order to do this I used the binary installer. To get started with bazel, use the bazel tutorial.

Revision 22023-11-04 - UliRaich

Line: 1 to 1
 
META TOPICPARENT name="ESP32CExamples"

The tinyML Hello World example

How does tinyML hello world work?

Line: 8 to 8
  The model creation process is described in https://github.com/tensorflow/tflite-micro/tree/main/tensorflow/lite/micro/examples. In order for this to work he build tool bazel must be installed. In order to do this I used the binary installer. To get started with bazel, use the bazel tutorial.
Changed:
<
<
Unfortunately the process of TensorFlow model creation has been changed with respect to the description in the book and the jupyter notebook create_sine_model.ipynb creating the model cannot be found any longer in the github repository. It has been replaced by the Python script train.py.
>
>
Unfortunately the process of TensorFlow model creation has been changed with respect to the description in the book and the jupyter notebook create_sine_model.ipynb creating the model cannot be found any longer in the github repository. It has been replaced by the Python script train.py.

The hello_world example for the ESP32

The tinyML examples for the ESP32 are available for builds with esp-idf and for the Arduino SDK. Unfortunately the Arduino version uses a rather old version of TensorFlow Lite Micro (TFLM), while the esp-idf version runs on the latest version of TFLM. The code for the example programs are slightly different according to the versions of TFLM used. I upgraded the Arduiino library and modified the output_handler in such a way that the results from model invocation are displayed as light intensity on the ws2812 LED installed on the WeMos ESP32S3 WROOM and the values are compatible with the Arduino Plotter. The upgraded Arduino TFLM Arduino library can be found at https://github.com/uraich/TinyML/tree/main/Arduino/TFLM_ESP32.

In the plot below, the blue values correspond to the input for the model (values 0 .. 2 Π) and the red values are the output from invocation.

hello_world_plot.png

  -- Uli Raich - 2023-09-01

Comments

<--/commentPlugin-->
Added:
>
>
META FILEATTACHMENT attachment="hello_world_plot.png" attr="" comment="" date="1699107898" name="hello_world_plot.png" path="hello_world_plot.png" size="45334" user="UliRaich" version="1"

Revision 12023-09-01 - UliRaich

Line: 1 to 1
Added:
>
>
META TOPICPARENT name="ESP32CExamples"

The tinyML Hello World example

How does tinyML hello world work?

The program takes a value between 0 and 2Π and outputs the corresponding sine value. Of course this could be simply done passing through the sin function of the mathematics library. For demo purposes a neural network is created and trained by feeding it 1000 angle and sin(angle) pairs training it what the sin function is supposed to do. The trained model is converted from TensorFlow to TensorFlow Lite format and finally 'quantized' replacing the float values of the output model by int8 values thus drastically reducing the size of the model. The final model is transformed into char array within a C++ source file. This source file can finally easily be included into a C++ program running on the target processor (ESP32).

Model Creation

The model creation process is described in https://github.com/tensorflow/tflite-micro/tree/main/tensorflow/lite/micro/examples. In order for this to work he build tool bazel must be installed. In order to do this I used the binary installer. To get started with bazel, use the bazel tutorial.

Unfortunately the process of TensorFlow model creation has been changed with respect to the description in the book and the jupyter notebook create_sine_model.ipynb creating the model cannot be found any longer in the github repository. It has been replaced by the Python script train.py.

-- Uli Raich - 2023-09-01

Comments

<--/commentPlugin-->
 
This site is powered by the TWiki collaboration platform Powered by PerlCopyright © 2008-2024 by the contributing authors. All material on this collaboration platform is the property of the contributing authors.
Ideas, requests, problems regarding TWiki? Send feedback