From 004e8560c6a312d93ae1d46ceb8685c0ce082a9d Mon Sep 17 00:00:00 2001 From: Thomas Schleicher Date: Tue, 19 Sep 2023 13:58:30 +0200 Subject: [PATCH] Header und 10 --- neuronal_network.h | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/neuronal_network.h b/neuronal_network.h index c2b3c8c..8b6ceb9 100644 --- a/neuronal_network.h +++ b/neuronal_network.h @@ -1,5 +1,8 @@ #pragma once +#include "matrix.h" +#include "image.h" + typedef struct { int input_size; //Matrix* input; as local variable given to function @@ -13,7 +16,7 @@ typedef struct { Matrix* weights_3; Matrix* bias_3; - int output_size = 10; + int output_size; Matrix* weights_output; //Matrix* bias_output; // do we need it? //Matrix* output; as local variable given to function