load first commit

This commit is contained in:
Thomas 2023-09-19 21:53:07 +02:00
parent 424035b1b2
commit 614df3c4a1
6 changed files with 106 additions and 20 deletions

View file

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