ANN  0.1.1.5
A library containing multiple neural network models written in C
file.h
Go to the documentation of this file.
1 
11 #ifndef _ANN_MODELS_PCFNN_FILE_H
12 #define _ANN_MODELS_PCFNN_FILE_H
13 
14 #include "../../config.h"
15 #include <stdlib.h>
16 #include <stdio.h>
17 #include "neuron.h"
18 #include "layer.h"
19 #include "network.h"
20 
21 
29 int PCFNN_NETWORK_save_conf(struct PCFNN_NETWORK *net, FILE *fout);
30 
31 
39 int PCFNN_NETWORK_load_conf(struct PCFNN_NETWORK *net, FILE *fin);
40 
41 #endif /* _ANN_MODELS_PCFNN_FILE_H */
PCFNN_LAYER.
int PCFNN_NETWORK_load_conf(struct PCFNN_NETWORK *net, FILE *fin)
Load bias and weights of each neurons of net from fin.
Definition: file.c:25
PCFNN_NEURON.
int PCFNN_NETWORK_save_conf(struct PCFNN_NETWORK *net, FILE *fout)
Save bias and weights of each neurons of net in fout.
Definition: file.c:10
PCFNN_NETWORK.
Network unit.
Definition: network.h:27