This project implements a simple feedforward neural network in Verilog to solve the classic XOR problem, running on the Arduino MKR Vidor 4000 FPGA board. It demonstrates how neural network inference ...
The network is defined with an input layer of 2 neurons, a hidden layer of 4 neurons, and an output layer of 1 neuron. The tanh_activation function is used as the activation function for the neurons, ...