Class | Description |
---|---|
RBFClassifier |
Class implementing radial basis function networks, trained in a fully supervised manner using WEKA's Optimization class by minimizing squared error with the BFGS method.
|
RBFModel |
Abstract super class that can be extended by sub classes that learn RBF
models.
|
RBFNetwork |
Class that implements a normalized Gaussian radial
basisbasis function network.
It uses the k-means clustering algorithm to provide the basis functions and learns either a logistic regression (discrete class problems) or linear regression (numeric class problems) on top of that. |
RBFRegressor |
Class implementing radial basis function networks, trained in a fully supervised manner using WEKA's Optimization class by minimizing squared error with the BFGS method.
|