ArchivedC++Started Dec 2024
Distributed neural network
A proof-of-concept C++ neural network whose layers are computed across a network of participating machines, with consensus checks on layer outputs.
This was an experiment in running a neural network across multiple computers. The idea was to share the matrix operations of each layer across participating machines, then check their outputs through a consensus mechanism before moving on.
It's written in C++ and focuses on forward propagation. The project is now archived, and it remains a proof of concept for sharing the computation.