neuroal_network.c
new_network print_network - not needed free_network
This commit is contained in:
parent
85ad120d0a
commit
e86009ecf5
2 changed files with 13 additions and 0 deletions
|
|
@ -29,6 +29,7 @@ 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 randomize_network(Neural_Network* network, int scope);
|
||||
void free_network(Neural_Network* network);
|
||||
|
||||
void save_network(Neural_Network* network);
|
||||
|
|
|
|||
Reference in a new issue