![]() |
ANN
0.1.1.5
A library containing multiple neural network models written in C
|
#include <stdlib.h>
#include "ANN/models/PCFNN/neuron.h"
#include "ANN/models/PCFNN/layer.h"
#include "ANN/models/PCFNN/network.h"
#include "ANN/models/PCFNN/batch.h"
Go to the source code of this file.
Functions | |
void | PCFNN_NETWORK_init_batch (struct PCFNN_NETWORK *net) |
Initialize batch for the network net. More... | |
void | PCFNN_NETWORK_free_batch (struct PCFNN_NETWORK *net) |
Free all memory allocation for the batch of the network net. More... | |
void | PCFNN_NETWORK_clear_batch (struct PCFNN_NETWORK *net) |
Partially clear batch data of the network net. More... | |
void | PCFNN_NETWORK_clear_batch_all (struct PCFNN_NETWORK *net) |
void PCFNN_NETWORK_clear_batch | ( | struct PCFNN_NETWORK * | net | ) |
Partially clear batch data of the network net.
Clear all batch data of the network net.
[in] | net | (struct PCFNN_NETWORK*) a pointer an a PCFNN_NETWORK |
void PCFNN_NETWORK_clear_batch_all | ( | struct PCFNN_NETWORK * | net | ) |
void PCFNN_NETWORK_free_batch | ( | struct PCFNN_NETWORK * | net | ) |
Free all memory allocation for the batch of the network net.
[in] | net | (struct PCFNN_NETWORK*) a pointer an a PCFNN_NETWORK |
void PCFNN_NETWORK_init_batch | ( | struct PCFNN_NETWORK * | net | ) |
Initialize batch for the network net.
[in] | net | (struct PCFNN_NETWORK*) a pointer an a PCFNN_NETWORK |