Skip to content

Files

Latest commit

b7c1c73 · Jan 8, 2025

History

History

mnist_cnn

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
May 4, 2024
Jan 8, 2025
Dec 10, 2024
Dec 11, 2024
Dec 10, 2024
Dec 11, 2024
Jan 8, 2025
Jan 8, 2025
Jan 8, 2025
Jan 8, 2025
Jan 8, 2025
Jan 8, 2025
Jan 8, 2025
Jan 8, 2025
Jan 8, 2025
Oct 6, 2024

Image classification using Convolutional Neural Network

Install requirements

Make sure to have Python 3.10 installed. At the time TinyMaix, used for CNN, only supports Tensorflow <2.14, which is not supported on Python 3.12 or later.

Make sure to have the Unix port of MicroPython setup. On Windows you can use Windows Subsystem for Linux (WSL), or Docker.

Install the dependencies of this example:

python -m venv venv
source venv/bin/activate
pip install -r requirements.txt

Run training

This will train a Convolutional Neural Network using Keras. The process will output .tmdl that is our built model.

python mnist_train.py

Running on host

micropython -m mip install https://emlearn.github.io/emlearn-micropython/builds/master/x64_6.3/emlearn_cnn_int8.mpy

micropython mnist_cnn_run.py

Running on device (ViperIDE)

The fastest and easiest to to install on your device is to use Viper IDE. This will install the library and the example code: Run using ViperIDE

Running on device (manually)

!Make sure you have it running successfully on host first.

Flash your device with a standard MicroPython firmware, from the MicroPython.org downloads page.

mpremote mip install https://emlearn.github.io/emlearn-micropython/builds/master/xtensawin_6.3/emlearn_cnn_int8.mpy
mpremote cp mnist_cnn_int8.tmdl :
mpremote cp -r test_data/ :
mpremote run mnist_cnn_run.py

Running with live camera input

This example requires hardware with an ESP32 chip, and an OV2640 camera module. It has been tested on Lilygo T-Camera Mic v1.6.

You need to build a custom ESP32 firmware, and add this C module for camera access: https://github.com/cnadler86/micropython-camera-API

mpremote run mnist_cnn_camera.py