C# 클래스 Encog.Neural.Networks.Logic.FeedforwardLogic

상속: INeuralLogic
파일 보기 프로젝트 열기: encog/encog-silverlight-core

공개 메소드들

메소드 설명
Compute ( INeuralData input, NeuralOutputHolder useHolder ) : INeuralData

Compute the output for a given input to the neural network. This method provides a parameter to specify an output holder to use. This holder allows propagation training to track the output from each layer. If you do not need this holder pass null, or use the other compare method.

Init ( BasicNetwork network ) : void

Setup the network logic, read parameters from the network.

PreprocessLayer ( ILayer layer, INeuralData input, ISynapse source ) : void

Can be overridden by subclasses. Usually used to implement recurrent layers.

비공개 메소드들

메소드 설명
Compute ( NeuralOutputHolder holder, ILayer layer, INeuralData input, ISynapse source ) : void

Internal computation method for a single layer. This is called, as the neural network processes.

메소드 상세

Compute() 공개 메소드

Compute the output for a given input to the neural network. This method provides a parameter to specify an output holder to use. This holder allows propagation training to track the output from each layer. If you do not need this holder pass null, or use the other compare method.
public Compute ( INeuralData input, NeuralOutputHolder useHolder ) : INeuralData
input INeuralData The input provide to the neural network.
useHolder NeuralOutputHolder Allows a holder to be specified, this allows /// propagation training to check the output of each layer.
리턴 INeuralData

Init() 공개 메소드

Setup the network logic, read parameters from the network.
public Init ( BasicNetwork network ) : void
network BasicNetwork The network that this logic class belongs to.
리턴 void

PreprocessLayer() 공개 메소드

Can be overridden by subclasses. Usually used to implement recurrent layers.
public PreprocessLayer ( ILayer layer, INeuralData input, ISynapse source ) : void
layer ILayer The layer to process.
input INeuralData The input to this layer.
source ISynapse The source from this layer.
리턴 void