neuroal_network.c
new_network print_network - not needed free_network
This commit is contained in:
parent
13540377ff
commit
b097f30d64
2 changed files with 35 additions and 5 deletions
|
|
@ -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);
|
||||
|
|
|
|||
Reference in a new issue