#include <RBFNetwork.hpp>
Public Member Functions | |
RBFNetwork (RBFHiddenLayer *h, RBFWeightLayer *w, RBFOutputLayer *o) | |
Creates a RBF network with nofInputs inputs, one hidden layer and an output layer. | |
void | SetParameterEta (double eta) |
Sets the Eta parameter of the network. | |
virtual Vector | Recall (Vector const &input) |
Presents an input vector and returns the output vector of the RBF network. | |
virtual void | Train (Vector const &output) |
Trains the RBF network on a given output. | |
Private Attributes | |
Vector | m_latestOutput |
double | m_eta |
RBFHiddenLayer * | m_hiddenLayer |
RBFWeightLayer * | m_weightLayer |
RBFOutputLayer * | m_outputLayer |
|
Creates a RBF network with nofInputs inputs, one hidden layer and an output layer.
|
|
Sets the Eta parameter of the network.
|
|
Presents an input vector and returns the output vector of the RBF network.
|
|
Trains the RBF network on a given output.
|
|
|
|
|
|
|
|
|
|
|