ANN  0.1.1.5
A library containing multiple neural network models written in C
backprop.h
Go to the documentation of this file.
1 
11 #ifndef _ANN_MODELS_PCFNN_BACKPROP_H
12 #define _ANN_MODELS_PCFNN_BACKPROP_H
13 
14 #include "../../config.h"
15 #include <stdlib.h>
16 #include "neuron.h"
17 #include "layer.h"
18 #include "network.h"
19 
20 
30 void PCFNN_NETWORK_backprop(struct PCFNN_NETWORK *net, double *target, double eta, double alpha, double(*f_cost)(double, double));
31 
32 
39 
40 #endif /* _ANN_MODELS_PCFNN_BACKPROP_H */
PCFNN_LAYER.
void PCFNN_NETWORK_apply_delta(struct PCFNN_NETWORK *net)
Apply all delta calculated by PCFNN_NETWORK_backprop on the network net.
Definition: backprop.c:85
PCFNN_NEURON.
PCFNN_NETWORK.
Network unit.
Definition: network.h:27
void PCFNN_NETWORK_backprop(struct PCFNN_NETWORK *net, double *target, double eta, double alpha, double(*f_cost)(double, double))
Run the Backpropagation Algorithm on the network net.
Definition: backprop.c:64