Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/nthnn/diwa
Lightweight simple implementation of Artificial Neural Network for Arduino ESP32, ESP8266, RP2040, PlayStation Portable SDK, WebAssembly, and even Windows, macOS, and Linux-based OSes.
https://github.com/nthnn/diwa
arduino arduino-library artificial-neural-network esp32 esp32-arduino esp32-wroom neural-network neural-networks platformio-arduino platformio-library psp-sdk wasm wasm-library
Last synced: 7 days ago
JSON representation
Lightweight simple implementation of Artificial Neural Network for Arduino ESP32, ESP8266, RP2040, PlayStation Portable SDK, WebAssembly, and even Windows, macOS, and Linux-based OSes.
- Host: GitHub
- URL: https://github.com/nthnn/diwa
- Owner: nthnn
- License: mit
- Created: 2024-01-20T09:34:05.000Z (10 months ago)
- Default Branch: main
- Last Pushed: 2024-07-31T08:06:00.000Z (4 months ago)
- Last Synced: 2024-08-01T01:06:00.737Z (4 months ago)
- Topics: arduino, arduino-library, artificial-neural-network, esp32, esp32-arduino, esp32-wroom, neural-network, neural-networks, platformio-arduino, platformio-library, psp-sdk, wasm, wasm-library
- Language: C++
- Homepage: https://nthnn.github.io/diwa/
- Size: 1.16 MB
- Stars: 2
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Funding: .github/FUNDING.yml
- License: LICENSE
Awesome Lists containing this project
README
Diwa: Tiny AI/ML Library
![GCC Build CI](https://github.com/nthnn/diwa/actions/workflows/gcc_build_ci.yml/badge.svg)
![Emscripten Build CI](https://github.com/nthnn/diwa/actions/workflows/emcc_build_ci.yml/badge.svg)
![Arduino CI](https://github.com/nthnn/diwa/actions/workflows/arduino_ci.yml/badge.svg)
![Arduino Lint](https://github.com/nthnn/diwa/actions/workflows/arduino_lint.yml/badge.svg)
![Arduino Release](https://img.shields.io/badge/Library%20Manager-v0.0.8-red?logo=Arduino)
[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://github.com/nthnn/diwa/blob/main/LICENSE)Diwa is a lightweight library providing a simple implementation of Feedforward Artificial Neural Networks (ANNs) for microcontrollers such as ESP32, ESP8266, RP2040, and similar development boards (specially boards with PSRAM); it is also compatible for desktop environments (Windows, MacOS, and Linux-based OSes), WebAssembly, and even PSP gaming consoles. It is designed for resource-constrained environments but can be used with non-Arduino platform projects, offering a streamlined solution for tasks that require neural network capabilities.
Diwa stands out as a straightforward and effective solution for implementing artificial neural networks on microcontrollers. Key features include:
- **Lightweight**: Designed for resource-constrained microcontroller environments yet can still be used within non-Arduino environments.
- **Simple Implementation**: Provides a basic yet effective implementation of a Feedforward ANN.
- **Easy Integration**: Suitable for microcontrollers like ESP8266, ESP32, and RP2040. Also compatible with desktop environments, WebAssembly, and even PSP gaming console.
- **Training Support**: Includes methods for training the neural network using backpropagation.> [!NOTE]
> Diwa is primarily intended for lightweight applications. For more intricate tasks, consider using advanced machine learning libraries on more powerful platforms.See live demo on [Wokwi](https://wokwi.com/projects/387551593748039681).
## Architecture/Platform Support
Diwa are tested on the following architecture/platform:
| Arch/Platform | Remarks |
|--------------------------------------------|------------------------------------------------------|
| β ESP32-WROOM
β ESP32-WROVER | NodeMCU DevKit (Automatically using PSRAM available) |
| β ESP8266 | [Wokwi](https://wokwi.com/) Emulation |
| β RP2040 | Raspberry Pi Pico (RP2040) |
| πΌ PSP | PPSSPP Emulator (Diwa::loadFromFile and Diwa::saveToFile not yet supported) |
| β Desktop Environments | Works perfectly on Windows, MacOS, and Linux. |
| β WebAssembly (WASM) | Tested via Emscripten |## Getting Started
## Docker
You can have a quickstart by running the Docker image.
```shell
docker run nthnn/diwa:0.0.7
```### On Arduino Platform
To start using Diwa library in your Arduino projects, follow these simple steps:
1. Open your Library Manager on Arduino IDE.
2. Type `diwa` and click "Install."Alternatively, you can follow the steps below:
1. Download the Diwa library from the GitHub repository.
2. Extract the downloaded archive and rename the folder to "diwa".
3. Move the "diwa" folder to the Arduino libraries directory on your computer.
- Windows: `Documents\Arduino\libraries\`
- MacOS: `~/Documents/Arduino/libraries/`
- Linux: `~/Arduino/libraries/`
4. Launch the Arduino IDE.### On C++ Projects (Including Emscripten)
Using Diwa on C++ projects might be quite different depending on what build tools you are using.
1. Include the Diwa git repository as submodule on your project's `lib` folder.
```bash
git submodule add https://github.com/nthnn/diwa.git
```To do this, your project must be a git repository.
2. Add the `lib/diwa/src` folder on your project's `Makefile`.
3. Add the `*.cpp` files on the build source files.> [!NOTE]
> Alternatively, you can download the `*.deb` file from the [release](https://github.com/nthnn/diwa/releases) page to install Diwa as a shared library on Debian-based operating systems.### PlayStation Portable SDK
Same on every C++ projects, depending on your build process, this might be quite different on some instances.
1. Add `--std=c++17` on the compiler arguments.
2. Include the `src` folder on the include arguments.
3. Finally, include the `*.cpp` files from the `src` folder on compilation.Or you can check the [examples/psp_xor/build.bat](examples/psp_xor/build.bat) for reference.
## Examples
To access the examples:
1. Open the Arduino IDE.
2. Click on `File > Examples > diwa` to see the list of available examples.
3. Upload the example sketch to your Arduino board and see the results in action.Here's a full example usage for an Arduino environment:
```cpp
#includevoid setup() {
// Initialize serial communication with a baud rate of 115200
Serial.begin(115200);// Define training input and output data for XOR operation
double trainingInput[4][2] = {{0, 0}, {0, 1}, {1, 0}, {1, 1}};
double trainingOutput[4][1] = {{1}, {0}, {0}, {1}};// Create an instance of the Diwa neural network with 2 input neurons,
// 1 hidden layer with 3 neurons, and 1 output neuron
Diwa network;
if(network.initialize(2, 1, 3, 1) == NO_ERROR)
Serial.println(F("Done initializing neural network."));
else {
Serial.println(F("Something went wrong initializing neural network."));
while(true);
}// Train the network for 3000 epochs using the XOR training data
Serial.println(F("Starting training..."));
for(uint32_t epoch = 0; epoch < 10000; epoch++) {
// Train the network for each set of input and target output values
network.train(6, trainingInput[0], trainingOutput[0]);
network.train(6, trainingInput[1], trainingOutput[1]);
network.train(6, trainingInput[2], trainingOutput[2]);
network.train(6, trainingInput[3], trainingOutput[3]);// Show accuracy and loss on training for every 100th epoch
if(epoch % 1000 == 0) {
double accuracy = 0.0, loss = 0.0;// Calculate accuracy and loss for each training sample
for(uint8_t i = 0; i < 4; i++) {
accuracy += network.calculateAccuracy(trainingInput[i], trainingOutput[i], 3);
loss += network.calculateLoss(trainingInput[i], trainingOutput[i], 3);
}// Average accuracy and loss over all samples
accuracy /= 4, loss /= 4;// Print the accuracy and loss
Serial.print(F("Epoch: "));
Serial.print(epoch);
Serial.print(F(", accuracy: "));
Serial.print(accuracy * 100);
Serial.print(F("%, loss: "));
Serial.print(loss * 100);
Serial.println(F("%"));
}
}
Serial.println(F("Training done!"));// Perform inference on the trained network and print the results
Serial.println(F("Testing inferences..."));
for(uint8_t i = 0; i < 4; i++) {
// Get the current input row
double* row = trainingInput[i];// Perform inference using the trained network
double* inferred = network.inference(row);// Print the result for the current input
char str[100];
sprintf(str, "Output for [%1.f, %1.f]: %1.f (%g)\n", row[0], row[1], inferred[0], inferred[0]);
Serial.print(str);
}
}void loop() {
delay(10);
}
```## Contribution and Feedback
Contributions and feedback are all welcome to enhance this library. If you encounter any issues, have suggestions for improvements, or would like to contribute code, please do so.
## License
Copyright 2023 - Nathanne Isip
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the βSoftwareβ), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED βAS ISβ, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.