]> git.leonardobizzoni.com Git - mnist/log
mnist
21 months agoNN query
LeonardoBizzoni [Mon, 27 May 2024 12:45:30 +0000 (14:45 +0200)]
NN query

21 months agoFixed creation of weight matrix
LeonardoBizzoni [Mon, 27 May 2024 12:32:51 +0000 (14:32 +0200)]
Fixed creation of weight matrix

A weight was supposed to be a DMatrix<f64> with:
- nrows = node_count in the next layer
- ncols = node_count in the current layer
so that the resulting matrix could be multiplied with the input matrix (column vector)

21 months agoMoved NNError to its own file
LeonardoBizzoni [Sun, 26 May 2024 17:12:06 +0000 (19:12 +0200)]
Moved NNError to its own file

21 months agoNeuralNetwork creation
LeonardoBizzoni [Sun, 26 May 2024 17:09:51 +0000 (19:09 +0200)]
NeuralNetwork creation