Difference: TinyML (12 vs. 13)

Revision 132024-02-21 - UliRaich

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

TinyML

Introduction

Machine learning (ML) algorithms usually work on huge datasets and require an enormous amount of resources. On the other hand many mobile phone use face recognition to improve photographs or speech recognition for natural language translation. This can be achieved by training machine learning models, in particular neural networks, on the big computer, which may use a GPU (Graphical Procession Unit) available on many of them, while the trained model is scaled down and used on the mobile phone.

Not long ago Google has released TensorFlow, the Artificial Intelligence library it uses for its own algorithms, as OpenSource and therefore made it available to everybody. The full Tensorflow library is used to create and train models and the TFLite library allow the down-scaling and use on smaller machines. Only very recently TFLite-micro (tflm) has been released which strips down the system even further to make it available of embedded systems.

TinyML with MicroPython on the ESP32

The TinyML library is described in a book published by O'Reilly. This book demonstrates how to use tflm models on three different micro-controllers:

  • Arduino Nano 33 BLE Sense
  • Sparkfun Edge
  • ST Microelectronics STM32F746G Discovery
and uses the C++ programming language.

It describes 4 different projects:

  • A hello world example which uses a regression algorithm to predict values of a sine function
  • Wake word detection, a model which can detect the spoken words "yes" and "no". The on-board microphone is used to sample the audio data.
  • People detection, a system that gets images from a camera and determines if a person is in sight of the camera
  • Magic Wand, a system that recognizes gestures using an accelerometer
In the meantime the examples have been ported to the ESP32 and the ESP32S3 as well. These examples are written in C++ using either the Espressif development environment esp-idf or the Arduino SDK. Unfortunately the ESP32 TensorFlow library for the Arduino SDK is already a little outdated but I was able to create a TensorFlow Lite Micro source tree from the latest TFLM repository, which can be used with the ESP32 Arduino SDK.

The magic wand demo is only available for the Arduino Nano 33 sense module.

Here we go through the ESP32 C++ examples

Michael O'Cleirigh has started a project on github trying to port these examples to MicroPython (https://github.com/mocleiri/tensorflow-micropython-examples). Since there are several ESP32 modules that include a simple camera, I2S microphones are supported in MicroPython and several accelerometers with I2C interface are available, it should be possible to run these examples on the ESP32.

The hardware

Changed:
<
<
For the person detection example several esp32-cam boards integrating a camera with the ESP32 CPU are available. Some provide an SD card interface, such that photos or videos from the camera can be recorded onto an SD card. Some of these boards have only 16 output pins and are therefore very limited in the number of GPIO lines available to interface external devices and others use 40 output pins. None of them has a microphone and/or an accelerometer on board. To my knowledge there is only one such board using the ESP32S3 chip with vector instructions speeding up neural network operations and that one is a 40 pin device. I therefore selected this device for my studies.
>
>
For the person detection example several esp32-cam boards integrating a camera with the ESP32 CPU are available. Some provide an SD card interface, such that photos or videos from the camera can be recorded onto an SD card. Some of these boards have only 16 output pins and are therefore very limited in the number of GPIO lines available to interface external devices and others use 40 output pins. Only the ESP32-S3-FN8 has a camera and a microphone and none have an accelerometer on board.
 
Changed:
<
<
ESP32S3_kit.png
>
>
For all demos except the magic wand example I therefore use the ESP32-S3-FN8
 
Changed:
<
<
Of course it is possible to interface the microphone and/or the accelerometer to the above board, but in this case a bread board and quite a bit of external cabling is needed. I therefore prefer to use the WeMos D1 mini eco-system with an ESP32S3 CPU, a triple base and prototype boards onto which the microphone and the accelerometer are mounted.
>
>
esp32-s3-fn8.png

Of course it is possible to interface also the accelerometer to the above board, but in this case a bread board and quite a bit of external cabling is needed. I therefore prefer to use the WeMos D1 mini eco-system with an ESP32S3 CPU, a triple base and prototype boards onto which the microphone and the accelerometer are mounted.

  The photos below show the CPU and the backplane board.
esp32s3_cpu.png triple_board.png proto.png
ESP32-S3FH4R2 CPU back plane (triple base) prototype board
The pinout of the ESP32S3 CPU looks as follows:

esp32s3_pinout.png

and the circuit diagram can be found here:

https://iotworkshop.africa/pub/IoT_Course_English/TinyML/sch_s3_mini_v1.0.0.pdf

in addition we need the microphone and the accelerometer. The I2S driver in MicroPython support the MH-ET Live and the SPH0645 microphones. There are many accelerometers on the market and I selected the LSM6DS3 because this is also used in the TinyML book.

sph0645.png mh-et-live.png lsm6ds3.png
SPH0645 microphone MH-ET Live microphone LSM6DS3 accelerometer

The photo below shows the MH-ET Live microphone mounted on a prototype board. The connections are made with small cables on the back. The prototype board can then simply be plugged onto the base board.

microphone.png micro_back.png
top view of the microphone mounted on the prototype board cabling on the back
Setting up the PC and MicroPython for TensorFlow

The following pages show how to set up the PC to run TensorFlow, how to create models and how to down-scale them for use on the ESP32. Then a custom version of MicroPython must be created including the esp32-camera driver and its MicroPython interface as well as ulab, a stripped down version of numpy and scipy as well as the tflm library and its MicroPython access routines.

Finally the installation of the TinyML examples on the ESP32 is explained.

-- Uli Raich - 2022-01-31

Comments


<--/commentPlugin-->

META FILEATTACHMENT attachment="ESP32S3_kit.png" attr="" comment="" date="1693646417" name="ESP32S3_kit.png" path="ESP32S3_kit.png" size="297059" user="UliRaich" version="1"
META FILEATTACHMENT attachment="ESP32S3_pinout.png" attr="" comment="" date="1693646914" name="ESP32S3_pinout.png" path="ESP32S3_pinout.png" size="359825" user="UliRaich" version="1"
META FILEATTACHMENT attachment="microphone.png" attr="" comment="" date="1694420329" name="microphone.png" path="microphone.png" size="349049" user="UliRaich" version="2"
META FILEATTACHMENT attachment="esp32s3_cpu.png" attr="" comment="" date="1694419188" name="esp32s3_cpu.png" path="esp32s3_cpu.png" size="290745" user="UliRaich" version="1"
META FILEATTACHMENT attachment="triple_board.png" attr="" comment="" date="1694419188" name="triple_board.png" path="triple_board.png" size="108158" user="UliRaich" version="1"
META FILEATTACHMENT attachment="sph0645.png" attr="" comment="" date="1694419189" name="sph0645.png" path="sph0645.png" size="121710" user="UliRaich" version="1"
META FILEATTACHMENT attachment="mh-et-live.png" attr="" comment="" date="1694419859" name="mh-et-live.png" path="mh-et-live.png" size="159361" user="UliRaich" version="1"
META FILEATTACHMENT attachment="lsm6ds3.png" attr="" comment="" date="1694419860" name="lsm6ds3.png" path="lsm6ds3.png" size="71225" user="UliRaich" version="1"
META FILEATTACHMENT attachment="proto.png" attr="" comment="" date="1694420071" name="proto.png" path="proto.png" size="175932" user="UliRaich" version="1"
META FILEATTACHMENT attachment="micro_back.png" attr="" comment="" date="1694421710" name="micro_back.png" path="micro_back.png" size="367313" user="UliRaich" version="2"
META FILEATTACHMENT attachment="sch_s3_mini_v1.0.0.pdf" attr="" comment="" date="1694523423" name="sch_s3_mini_v1.0.0.pdf" path="sch_s3_mini_v1.0.0.pdf" size="165478" user="UliRaich" version="1"
META FILEATTACHMENT attachment="esp32s3_pinout.png" attr="" comment="" date="1694523425" name="esp32s3_pinout.png" path="esp32s3_pinout.png" size="227540" user="UliRaich" version="1"
Added:
>
>
META FILEATTACHMENT attachment="esp32-s3-fn8.png" attr="" comment="" date="1708532885" name="esp32-s3-fn8.png" path="esp32-s3-fn8.png" size="353127" user="UliRaich" version="1"
 
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