Save network and overworked save matrix

This commit is contained in:
Thomas Schleicher 2023-09-19 15:06:31 +02:00
parent 13540377ff
commit af81566c45
3 changed files with 65 additions and 11 deletions

View file

@ -29,7 +29,7 @@ Neural_Network* new_network(int input_size, int hidden_size, int output_size, do
void print_network(Neural_Network* network);
void free_network(Neural_Network* network);
void save_network(Neural_Network* network, char* file);
void save_network(Neural_Network* network);
Neural_Network* load_network(char* file);
double predict_images(Neural_Network* network, Image** images, int amount);