C# 클래스 xpidea.neuro.net.backprop.EpochBackPropagationLink

A link in xpidea.neuro.net.backprop.EpochBackPropagationNetwork. Implements functionality related to an epoch network training model.
상속: BackPropagationLink
파일 보기 프로젝트 열기: AlexCherkasov/Neuro.NET

보호된 프로퍼티들

프로퍼티 타입 설명
linkEpoch double

공개 메소드들

메소드 설명
Epoch ( int epoch ) : void

Overridden.Tells the link, that all patterns have been exposed and it's time to update link weight.

Load ( BinaryReader binaryReader ) : void

Overridden.Loads the link data from the stream.

Save ( BinaryWriter binaryWriter ) : void

Overridden.Stores link data in a binary stream.

UpdateWeight ( double deltaWeight ) : void

Overridden.Updates the link weightaccording to the training model. In this particular case accumulates deltaWeight values in xpidea.neuro.net.backprop.EpochBackPropagationLink.LinkEpoch property.

보호된 메소드들

메소드 설명
GetLinkEpoch ( ) : double

Getter for xpidea.neuro.net.backprop.EpochBackPropagationLink.LinkEpoch property.

SetLinkEpoch ( double epoch ) : void

Setter for xpidea.neuro.net.backprop.EpochBackPropagationLink.LinkEpoch property.

메소드 상세

Epoch() 공개 메소드

Overridden.Tells the link, that all patterns have been exposed and it's time to update link weight.
public Epoch ( int epoch ) : void
epoch int Number of patterns that was exposed to the network.
리턴 void

GetLinkEpoch() 보호된 메소드

Getter for xpidea.neuro.net.backprop.EpochBackPropagationLink.LinkEpoch property.
protected GetLinkEpoch ( ) : double
리턴 double

Load() 공개 메소드

Overridden.Loads the link data from the stream.
public Load ( BinaryReader binaryReader ) : void
binaryReader System.IO.BinaryReader Binary stream reader.
리턴 void

Save() 공개 메소드

Overridden.Stores link data in a binary stream.
public Save ( BinaryWriter binaryWriter ) : void
binaryWriter System.IO.BinaryWriter Binary stream writer.
리턴 void

SetLinkEpoch() 보호된 메소드

Setter for xpidea.neuro.net.backprop.EpochBackPropagationLink.LinkEpoch property.
protected SetLinkEpoch ( double epoch ) : void
epoch double New epoch value.
리턴 void

UpdateWeight() 공개 메소드

Overridden.Updates the link weightaccording to the training model. In this particular case accumulates deltaWeight values in xpidea.neuro.net.backprop.EpochBackPropagationLink.LinkEpoch property.
public UpdateWeight ( double deltaWeight ) : void
deltaWeight double Delta of the weight change.
리턴 void

프로퍼티 상세

linkEpoch 보호되어 있는 프로퍼티

Stores epoch of the link.
protected double linkEpoch
리턴 double