This is an example showing how to train a model using a predefined sparse update schema with TinyEngine.
Note: This section is basically from https://github.com/openmv/openmv/blob/master/src/README.md. Please refer to the OpenMV's repo for more details or steps on different env.
sudo apt-get update
sudo apt-get install git build-essential
Install arm toolchain
TOOLCHAIN_PATH=/usr/local/arm-none-eabi
TOOLCHAIN_URL="https://armkeil.blob.core.windows.net/developer/Files/downloads/gnu-rm/10-2020q4/gcc-arm-none-eabi-10-2020-q4-major-x86_64-linux.tar.bz2"
sudo mkdir ${TOOLCHAIN_PATH}
wget --no-check-certificate -O - ${TOOLCHAIN_URL} | sudo tar --strip-components=1 -jx -C ${TOOLCHAIN_PATH}
export PATH=${TOOLCHAIN_PATH}/bin:${PATH}
cd tinyengine/examples/openmv_training_sparse/
git clone https://github.com/openmv/openmv.git
Currently, we don't have compatibility tests for the OpenMV source, so let's use the version that has been manually tested before.
cd openmv
git checkout 918ccb937730cc759ee5709df089d9de516dc7bf
git submodule update --init --recursive
Let's first build the firmware from the source to make sure all required dependencies are correctly installed. The TARGET
is set to OPENMV4
for OpenMV Cam H7.
make -j4 -C src/micropython/mpy-cross
make -j4 TARGET=OPENMV4 -C src
You should see the compiled binary at openmv/src/build/bin/firmware.bin
.
The patch is to
- disable some features in the firmware for SRAM and flash space
- setup for TinyEngine source
- add the application code for training in
exampleemodule.c
git apply ../openmv_sparse_training.patch
cd ..
sh gen_code.sh
cd openmv
make -j4 TARGET=OPENMV4 -C src
Flash the binary openmv/src/build/bin/firmware.bin
into your OpenMV. Please refer to the official Instructions.
Connect two buttons with jump wires to pin1 and pin4. Please refer to the pinout.
These two buttons will be used to label images captured by the camera.
- Open OpenMV IDE
- Connect your OpenMV cam to the PC
- Run the python script
tinyengine/examples/openmv_vww/vww_openmv_demo.py
in OpenMV IDE.