neuralNetwork fixed

This commit is contained in:
Jan Uhlmann 2025-11-24 08:24:37 +00:00
parent f4427d2892
commit 6ba9ba3195

View File

@ -170,7 +170,7 @@ NeuralNetwork loadModel(const char *path)
static Matrix imageBatchToMatrixOfImageVectors(const GrayScaleImage images[], unsigned int count)
{
Matrix matrix = {NULL, 0, 0};
Matrix matrix = {0, 0, NULL};
if(count > 0 && images != NULL)
{