HolyFuckItsAlive #13

Merged
jastornig merged 105 commits from Delta-Error-Test into main 2023-09-23 22:27:54 +02:00
Showing only changes of commit 004e8560c6 - Show all commits

View file

@ -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