Header und 10
This commit is contained in:
parent
9592f1851c
commit
004e8560c6
1 changed files with 4 additions and 1 deletions
|
|
@ -1,5 +1,8 @@
|
||||||
#pragma once
|
#pragma once
|
||||||
|
|
||||||
|
#include "matrix.h"
|
||||||
|
#include "image.h"
|
||||||
|
|
||||||
typedef struct {
|
typedef struct {
|
||||||
int input_size;
|
int input_size;
|
||||||
//Matrix* input; as local variable given to function
|
//Matrix* input; as local variable given to function
|
||||||
|
|
@ -13,7 +16,7 @@ typedef struct {
|
||||||
Matrix* weights_3;
|
Matrix* weights_3;
|
||||||
Matrix* bias_3;
|
Matrix* bias_3;
|
||||||
|
|
||||||
int output_size = 10;
|
int output_size;
|
||||||
Matrix* weights_output;
|
Matrix* weights_output;
|
||||||
//Matrix* bias_output; // do we need it?
|
//Matrix* bias_output; // do we need it?
|
||||||
//Matrix* output; as local variable given to function
|
//Matrix* output; as local variable given to function
|
||||||
|
|
|
||||||
Reference in a new issue