ANN  0.1.1.5
A library containing multiple neural network models written in C
batch.h File Reference

PCFNN_BATCH. More...

#include "../../config.h"
#include <stdlib.h>
#include "neuron.h"
#include "layer.h"
#include "network.h"
+ Include dependency graph for batch.h:
+ This graph shows which files directly or indirectly include this file:

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)
 

Detailed Description

PCFNN_BATCH.

Author
Cedric FARINAZZO
Version
0.1
Date
5 may 2019

IO functions for PCFNN neural network

Definition in file batch.h.

Function Documentation

◆ PCFNN_NETWORK_clear_batch()

PCFNN_NETWORK_clear_batch ( struct PCFNN_NETWORK net)

Partially clear batch data of the network net.

Clear all batch data of the network net.

Parameters
[in]net(struct PCFNN_NETWORK*) a pointer an a PCFNN_NETWORK

Definition at line 38 of file batch.c.

◆ PCFNN_NETWORK_clear_batch_all()

void PCFNN_NETWORK_clear_batch_all ( struct PCFNN_NETWORK net)

Definition at line 52 of file batch.c.

◆ PCFNN_NETWORK_free_batch()

PCFNN_NETWORK_free_batch ( struct PCFNN_NETWORK net)

Free all memory allocation for the batch of the network net.

Parameters
[in]net(struct PCFNN_NETWORK*) a pointer an a PCFNN_NETWORK

Definition at line 23 of file batch.c.

◆ PCFNN_NETWORK_init_batch()

PCFNN_NETWORK_init_batch ( struct PCFNN_NETWORK net)

Initialize batch for the network net.

Parameters
[in]net(struct PCFNN_NETWORK*) a pointer an a PCFNN_NETWORK

Definition at line 9 of file batch.c.