The created model is returned as a structure of class RBFgenerator
, containing the following items:
noGaussiansThe number of extracted Gaussian kernels.
centersA matrix of Gaussian kernels' centers, with one row for each Gaussian kernel.
probsA vector of kernel probabilities. Probabilities are defined as relative frequencies of training set instances with maximal activation in the given kernel.
unitClassA vector of class values, one for each kernel.
biasA vector of kernels' biases, one for each kernel. The bias is multiplied by the kernel activation to produce output value of given RBF network unit.
spreadA matrix of estimated variances for the kernels, one row for each kernel.
The j-th value in i-th row represents the variance of training instances for j-th attribute with maximal activation
in i-th Gaussian.
gNoActivatedA vector containing numbers of training instances with maximal activation in each kernel.
noAttrThe number of attributes in training data.
datNamesA vector of attributes' names.
originalNamesA vector of original attribute names.
attrClassesA vector of attributes' classes (i.e., data types like numeric
or factor
).
attrLevelsA list of levels for discrete attributes (with class factor
).
attrOrderedA vector of type logical indicating whether the attribute is ordered
(only possible for attributes of type factor
.
normParametersA list of parameters for normalization of attributes to [0,1].
noColThe number of columns in the internally generated data set.
isDiscreteA vector of type logical, each value indicating whether a respective attribute is discrete.
noAttrGenThe number of attributes to generate.
nominalThe value of parameter nominal
.