C# 클래스 Encog.Neural.Networks.Pattern.FeedForwardPattern

Used to create feedforward neural networks. A feedforward network has an input and output layers separated by zero or more hidden layers. The feedforward neural network is one of the most common neural network patterns.
상속: INeuralNetworkPattern
파일 보기 프로젝트 열기: encog/encog-silverlight-core 1 사용 예제들

공개 메소드들

메소드 설명
AddHiddenLayer ( int count ) : void

Add a hidden layer, with the specified number of neurons.

Clear ( ) : void

Clear out any hidden neurons.

Generate ( ) : BasicNetwork

Generate the Elman neural network.

메소드 상세

AddHiddenLayer() 공개 메소드

Add a hidden layer, with the specified number of neurons.
public AddHiddenLayer ( int count ) : void
count int The number of neurons to add.
리턴 void

Clear() 공개 메소드

Clear out any hidden neurons.
public Clear ( ) : void
리턴 void

Generate() 공개 메소드

Generate the Elman neural network.
public Generate ( ) : BasicNetwork
리턴 BasicNetwork