C# Class xpidea.neuro.net.backprop.BackPropagationRPROPLink

A link for xpidea.neuro.net.backprop.EpochBackPropagationNetwork network.
Inheritance: EpochBackPropagationLink
Mostrar archivo Open project: AlexCherkasov/Neuro.NET

Public Methods

Method Description
Epoch ( int epoch ) : void

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

Implements RPROP training algorithm.

Protected Methods

Method Description
DoAfterCreate ( ) : void

Overridden.Initializes private variables.

Method Details

DoAfterCreate() protected method

Overridden.Initializes private variables.
protected DoAfterCreate ( ) : void
return void

Epoch() public method

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