This commit is contained in:
2026-04-28 23:23:57 +07:00
parent ced1c1c291
commit 229c5d85c4
4 changed files with 158 additions and 16 deletions
+15
View File
@@ -0,0 +1,15 @@
#ifndef TYPEDEF_H
#define TYPEDEF_H
#include <vector>
typedef enum {
SIGMOID
} FunctionActivate_t;
typedef struct {
int size;
FunctionActivate_t activate;
} LayerStructure_t;
#endif