If you want to create a very basic and simple neural network start with perceptron (Single Layer Perceptron). It only contains one neuron (node with activation function) and the weights are the same size as your input features.
I have written a simple perceptron inspired by Tsoding channel in v: perceptron, which differentiates between a circle and a rectangle.
Everything comes to the matrix when creating even a simple neural network, so if you look at the below code itβs written in the vlang
but you will still be able to understand core logic.