Class Updater

java.lang.Object
com.logicaldoc.ai.neural.Updater
All Implemented Interfaces:
Serializable

@Embeddable public class Updater extends Object implements Serializable
The algorithm to use to optimize the update of the weights inside the NeuralNetwork.
Since:
9.2.1
Author:
Marco Meschieri - LogicalDOC
See Also:
  • Constructor Details

    • Updater

      public Updater()
    • Updater

      public Updater(UpdateAlgorithm updateAlgorithm)
  • Method Details

    • getLearningRate

      public Double getLearningRate()
    • setLearningRate

      public void setLearningRate(Double learningRate)
    • getEpsilon

      public Double getEpsilon()
    • setEpsilon

      public void setEpsilon(Double epsilon)
    • getMomentum

      public Double getMomentum()
    • setMomentum

      public void setMomentum(Double momentum)
    • getUpdateAlgorithm

      public UpdateAlgorithm getUpdateAlgorithm()
    • setUpdateAlgorithm

      public void setUpdateAlgorithm(UpdateAlgorithm updateAlgorithm)