!(feat) cli implemented
breaking changes. save_network in neuronal_network.c now takes a second parameter file_name
This commit is contained in:
parent
f13d3950b0
commit
e9881ed2b3
3 changed files with 116 additions and 20 deletions
|
|
@ -21,7 +21,7 @@ Neural_Network* new_network(int input_size, int hidden_size, int hidden_amount,
|
|||
void randomize_network(Neural_Network* network, int scope);
|
||||
void free_network(Neural_Network* network);
|
||||
|
||||
void save_network(Neural_Network* network);
|
||||
void save_network(Neural_Network* network, char * file_name);
|
||||
Neural_Network* load_network(char* file);
|
||||
|
||||
void print_network(Neural_Network* network);
|
||||
|
|
|
|||
Reference in a new issue