diff options
Diffstat (limited to 'src/neural.h')
-rw-r--r-- | src/neural.h | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/src/neural.h b/src/neural.h deleted file mode 100644 index 4456907..0000000 --- a/src/neural.h +++ /dev/null @@ -1,12 +0,0 @@ -#ifndef __NEURAL__ -#define __NEURAL__ - -#include <stdlib.h> -#include <stdint.h> - -typedef struct Layer { - double *weights; - double (*activation)(double x); - size_t neurons; -} Layer; -#endif |