XCSF  1.4.7
XCSF learning classifier system
clset_neural.h
Go to the documentation of this file.
1 /*
2  * This program is free software: you can redistribute it and/or modify
3  * it under the terms of the GNU General Public License as published by
4  * the Free Software Foundation, either version 3 of the License, or
5  * (at your option) any later version.
6  *
7  * This program is distributed in the hope that it will be useful,
8  * but WITHOUT ANY WARRANTY; without even the implied warranty of
9  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
10  * GNU General Public License for more details.
11  *
12  * You should have received a copy of the GNU General Public License
13  * along with this program. If not, see <http://www.gnu.org/licenses/>.
14  */
15 
24 #include "xcsf.h"
25 
26 double
27 clset_mean_cond_connections(const struct XCSF *xcsf, const struct Set *set,
28  const int layer);
29 
30 double
31 clset_mean_cond_layers(const struct XCSF *xcsf, const struct Set *set);
32 
33 double
34 clset_mean_cond_neurons(const struct XCSF *xcsf, const struct Set *set,
35  const int layer);
36 
37 double
38 clset_mean_pred_connections(const struct XCSF *xcsf, const struct Set *set,
39  const int layer);
40 
41 double
42 clset_mean_pred_eta(const struct XCSF *xcsf, const struct Set *set,
43  const int layer);
44 
45 double
46 clset_mean_pred_layers(const struct XCSF *xcsf, const struct Set *set);
47 
48 double
49 clset_mean_pred_neurons(const struct XCSF *xcsf, const struct Set *set,
50  const int layer);
double clset_mean_cond_neurons(const struct XCSF *xcsf, const struct Set *set, const int layer)
Calculates the mean number of condition neurons for a given layer.
Definition: clset_neural.c:65
double clset_mean_pred_eta(const struct XCSF *xcsf, const struct Set *set, const int layer)
Calculates the mean prediction layer ETA of classifiers in the set.
Definition: clset_neural.c:173
double clset_mean_cond_layers(const struct XCSF *xcsf, const struct Set *set)
Calculates the mean number of condition layers in the set.
Definition: clset_neural.c:39
double clset_mean_pred_connections(const struct XCSF *xcsf, const struct Set *set, const int layer)
Calculates the mean number of prediction connections in the set.
Definition: clset_neural.c:200
double clset_mean_pred_layers(const struct XCSF *xcsf, const struct Set *set)
Calculates the mean number of prediction layers in the set.
Definition: clset_neural.c:147
double clset_mean_cond_connections(const struct XCSF *xcsf, const struct Set *set, const int layer)
Calculates the mean number of condition connections in the set.
Definition: clset_neural.c:93
double clset_mean_pred_neurons(const struct XCSF *xcsf, const struct Set *set, const int layer)
Calculates the mean number of prediction neurons for a given layer.
Definition: clset_neural.c:121
Definition: __init__.py:1
Classifier set.
Definition: xcsf.h:76
XCSF data structure.
Definition: xcsf.h:85
XCSF data structures.