Merge remote-tracking branch 'origin/Development' into Development

This commit is contained in:
Thomas Schleicher 2023-09-19 15:06:39 +02:00
commit 486ca1ff57
3 changed files with 69 additions and 8 deletions

View file

@ -26,7 +26,7 @@ typedef struct {
} Neural_Network;
Neural_Network* new_network(int input_size, int hidden_size, int output_size, double learning_rate);
void print_network(Neural_Network* network);
//void print_network(Neural_Network* network);
void free_network(Neural_Network* network);
void save_network(Neural_Network* network);