loss function and support functions

This commit is contained in:
Thomas Schleicher 2023-09-21 12:23:59 +02:00
parent 0f7a0a5f11
commit f18a7714a2
4 changed files with 32 additions and 7 deletions

View file

@ -41,6 +41,3 @@ Matrix* predict(Neural_Network* network, Matrix* image_data);
void train_network(Neural_Network* network, Matrix* input, Matrix* output);
void batch_train_network(Neural_Network* network, Image** images, int size);
double relu(double input);
Matrix* softmax(Matrix* matrix);