OCR / XOR / NN / NN_Tools / error.h
error.h
Raw
#ifndef ERROR_H
#define ERROR_H

#include <math.h>
#include "layer.h"

float MeanSquaredError(t_layer* output, float* expected);

float* MeanSquaredError_Derivative(t_layer* output, float* expected);

#endif