ANN  0.1.1.5
A library containing multiple neural network models written in C
batch.h
Go to the documentation of this file.
1 
11 #ifndef _ANN_MODELS_PCFNN_BATCH_H
12 #define _ANN_MODELS_PCFNN_BATCH_H
13 
14 #include "../../config.h"
15 #include <stdlib.h>
16 #include "neuron.h"
17 #include "layer.h"
18 #include "network.h"
19 
20 
26 void PCFNN_NETWORK_init_batch(struct PCFNN_NETWORK *net);
27 
28 
34 void PCFNN_NETWORK_free_batch(struct PCFNN_NETWORK *net);
35 
36 
43 
44 
51 
52 #endif /* _ANN_MODELS_PCFNN_BATCH_H */
void PCFNN_NETWORK_clear_batch_all(struct PCFNN_NETWORK *net)
Definition: batch.c:52
PCFNN_LAYER.
void PCFNN_NETWORK_init_batch(struct PCFNN_NETWORK *net)
Initialize batch for the network net.
Definition: batch.c:9
PCFNN_NEURON.
void PCFNN_NETWORK_clear_batch(struct PCFNN_NETWORK *net)
Partially clear batch data of the network net.
Definition: batch.c:38
PCFNN_NETWORK.
void PCFNN_NETWORK_free_batch(struct PCFNN_NETWORK *net)
Free all memory allocation for the batch of the network net.
Definition: batch.c:23
Network unit.
Definition: network.h:27