A C++/Qt Quick desktop app to visualize and train simple MLP neural networks.
Following dependencies are required in order to build the application:
- GCC >= 13 (or other C++17 compliant compiler)
- CMake >= 3.28
- Qt >= 6.9
- Armadillo library >= 12.6
- GoogleTest >= 1.14
cd neural-network-sim
cmake -S . -B build
cmake --build build
To launch the application:
cd build
./neural-net-sim
To run tests:
ctest --test-dir build/src --output-on-failure
