Class MomentumBackpropagation
- java.lang.Object
-
- libai.nn.supervised.backpropagation.StandardBackpropagation
-
- libai.nn.supervised.backpropagation.MomentumBackpropagation
-
- All Implemented Interfaces:
Backpropagation
public class MomentumBackpropagation extends StandardBackpropagation
Created by kronenthaler on 18/01/2017.
-
-
Constructor Summary
Constructors Constructor Description MomentumBackpropagation(double beta)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
train(Column[] patterns, Column[] answers, double alpha, int epochs, int offset, int length, double minerror)
Trains a neural network using the backpropagation implementaion.-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from class libai.nn.supervised.backpropagation.StandardBackpropagation
initialize
-
-
-
-
Method Detail
-
train
public void train(Column[] patterns, Column[] answers, double alpha, int epochs, int offset, int length, double minerror)
Description copied from interface:Backpropagation
Trains a neural network using the backpropagation implementaion.- Specified by:
train
in interfaceBackpropagation
- Overrides:
train
in classStandardBackpropagation
-
-