org.neuroph.nnet
Class RbfNetwork

java.lang.Object
  extended by java.util.Observable
      extended by org.neuroph.core.NeuralNetwork
          extended by org.neuroph.nnet.RbfNetwork
All Implemented Interfaces:
Serializable

public class RbfNetwork
extends NeuralNetwork

Radial basis function neural network. TODO: learning for rbf layer: k-means clustering

Author:
Zoran Sevarac
See Also:
Serialized Form

Field Summary
 
Fields inherited from class org.neuroph.core.NeuralNetwork
output
 
Constructor Summary
RbfNetwork(int inputNeuronsCount, int rbfNeuronsCount, int outputNeuronsCount)
          Creates new RbfNetwork with specified number of neurons in input, rbf and output layer
 
Method Summary
 
Methods inherited from class org.neuroph.core.NeuralNetwork
addLayer, addLayer, addPlugin, calculate, createConnection, getInputNeurons, getInputsCount, getLabel, getLayerAt, getLayers, getLayersCount, getLearningRule, getLearningThread, getNetworkType, getOutput, getOutputNeurons, getOutputsCount, getPlugin, indexOf, learn, learn, learnInNewThread, learnInNewThread, load, load, notifyChange, pauseLearning, randomizeWeights, randomizeWeights, randomizeWeights, randomizeWeights, removeLayer, removeLayerAt, removePlugin, reset, resumeLearning, save, setInput, setInputNeurons, setLabel, setLearningRule, setNetworkType, setOutputNeurons, stopLearning, toString
 
Methods inherited from class java.util.Observable
addObserver, clearChanged, countObservers, deleteObserver, deleteObservers, hasChanged, notifyObservers, notifyObservers, setChanged
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

RbfNetwork

public RbfNetwork(int inputNeuronsCount,
                  int rbfNeuronsCount,
                  int outputNeuronsCount)
Creates new RbfNetwork with specified number of neurons in input, rbf and output layer

Parameters:
inputNeuronsCount - number of neurons in input layer
rbfNeuronsCount - number of neurons in rbf layer
outputNeuronsCount - number of neurons in output layer


Copyright © 2012. All Rights Reserved.