load first commit
This commit is contained in:
parent
424035b1b2
commit
614df3c4a1
6 changed files with 106 additions and 20 deletions
|
|
@ -25,6 +25,8 @@ typedef struct {
|
|||
|
||||
} Neural_Network;
|
||||
|
||||
static const int MAX_BYTES = 100;
|
||||
|
||||
Neural_Network* new_network(int input_size, int hidden_size, int output_size, double learning_rate);
|
||||
//void print_network(Neural_Network* network);
|
||||
void free_network(Neural_Network* network);
|
||||
|
|
|
|||
Reference in a new issue