C# Класс xpidea.neuro.net.backprop.EpochBackPropagationLink

A link in xpidea.neuro.net.backprop.EpochBackPropagationNetwork. Implements functionality related to an epoch network training model.
Наследование: BackPropagationLink
Показать файл Открыть проект

Защищенные свойства (Protected)

Свойство Тип Описание
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