C# 클래스 Encog.Engine.Network.Flat.FlatNetworkRBF

A flat network designed to handle an RBF.
상속: FlatNetwork
파일 보기 프로젝트 열기: encog/encog-silverlight-core 1 사용 예제들

공개 메소드들

메소드 설명
Clone ( ) : object

Clone the network.

Compute ( double x, double output ) : void

Calculate the output for the given input.

FlatNetworkRBF ( ) : Encog.Engine.Network.Activation

Default constructor.

FlatNetworkRBF ( int inputCount, int hiddenCount, int outputCount, IRadialBasisFunction rbf ) : Encog.Engine.Network.Activation

Construct an RBF flat network.

메소드 상세

Clone() 공개 메소드

Clone the network.
public Clone ( ) : object
리턴 object

Compute() 공개 메소드

Calculate the output for the given input.
public Compute ( double x, double output ) : void
x double The input.
output double Output will be placed here.
리턴 void

FlatNetworkRBF() 공개 메소드

Default constructor.
public FlatNetworkRBF ( ) : Encog.Engine.Network.Activation
리턴 Encog.Engine.Network.Activation

FlatNetworkRBF() 공개 메소드

Construct an RBF flat network.
public FlatNetworkRBF ( int inputCount, int hiddenCount, int outputCount, IRadialBasisFunction rbf ) : Encog.Engine.Network.Activation
inputCount int The number of input neurons. (also the number of dimensions)
hiddenCount int The number of hidden neurons.
outputCount int The number of output neurons.
rbf IRadialBasisFunction The RBF's to use.
리턴 Encog.Engine.Network.Activation