neuroal_network.c

new_network
print_network - not needed
free_network
This commit is contained in:
Ghost_Element 2023-09-19 14:47:18 +02:00
parent 13540377ff
commit b097f30d64
2 changed files with 35 additions and 5 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, char* file);