Class/Object

breeze.optimize

FirstOrderMinimizer

Related Docs: object FirstOrderMinimizer | package optimize

Permalink

abstract class FirstOrderMinimizer[T, DF <: StochasticDiffFunction[T]] extends Minimizer[T, DF] with SerializableLogging

Linear Supertypes
SerializableLogging, Serializable, Serializable, Minimizer[T, DF], AnyRef, Any
Known Subclasses
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. FirstOrderMinimizer
  2. SerializableLogging
  3. Serializable
  4. Serializable
  5. Minimizer
  6. AnyRef
  7. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Instance Constructors

  1. new FirstOrderMinimizer(maxIter: Int = 1, tolerance: Double = 1E-6, fvalMemory: Int = 100, relativeTolerance: Boolean = true)(implicit space: NormedModule[T, Double])

    Permalink
  2. new FirstOrderMinimizer(convergenceCheck: ConvergenceCheck[T])(implicit space: NormedModule[T, Double])

    Permalink

Type Members

  1. abstract type History

    Permalink

    Any history the derived minimization function needs to do its updates.

    Any history the derived minimization function needs to do its updates. typically an approximation to the second derivative/hessian matrix.

  2. type State = FirstOrderMinimizer.State[T, Info, History]

    Permalink

Abstract Value Members

  1. abstract def chooseDescentDirection(state: State, f: DF): T

    Permalink
    Attributes
    protected
  2. abstract def determineStepSize(state: State, f: DF, direction: T): Double

    Permalink
    Attributes
    protected
  3. abstract def initialHistory(f: DF, init: T): History

    Permalink
    Attributes
    protected
  4. abstract def takeStep(state: State, dir: T, stepSize: Double): T

    Permalink
    Attributes
    protected
  5. abstract def updateHistory(newX: T, newGrad: T, newVal: Double, f: DF, oldState: State): History

    Permalink
    Attributes
    protected

Concrete Value Members

  1. final def !=(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  4. def adjust(newX: T, newGrad: T, newVal: Double): (Double, T)

    Permalink
    Attributes
    protected
  5. def adjustFunction(f: DF): DF

    Permalink
    Attributes
    protected
  6. final def asInstanceOf[T0]: T0

    Permalink
    Definition Classes
    Any
  7. def calculateObjective(f: DF, x: T, history: History): (Double, T)

    Permalink
    Attributes
    protected
  8. def clone(): AnyRef

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @HotSpotIntrinsicCandidate() @throws( ... )
  9. val convergenceCheck: ConvergenceCheck[T]

    Permalink
  10. final def eq(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  11. def equals(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  12. final def getClass(): Class[_]

    Permalink
    Definition Classes
    AnyRef → Any
    Annotations
    @HotSpotIntrinsicCandidate()
  13. def hashCode(): Int

    Permalink
    Definition Classes
    AnyRef → Any
    Annotations
    @HotSpotIntrinsicCandidate()
  14. def infiniteIterations(f: DF, state: State): Iterator[State]

    Permalink
  15. def initialState(f: DF, init: T): State

    Permalink
    Attributes
    protected
  16. final def isInstanceOf[T0]: Boolean

    Permalink
    Definition Classes
    Any
  17. def iterations(f: DF, init: T): Iterator[State]

    Permalink
  18. def logger: LazyLogger

    Permalink
    Attributes
    protected
    Definition Classes
    SerializableLogging
  19. def minimize(f: DF, init: T): T

    Permalink
    Definition Classes
    FirstOrderMinimizerMinimizer
  20. def minimizeAndReturnState(f: DF, init: T): State

    Permalink
  21. final def ne(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  22. final def notify(): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @HotSpotIntrinsicCandidate()
  23. final def notifyAll(): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @HotSpotIntrinsicCandidate()
  24. final def synchronized[T0](arg0: ⇒ T0): T0

    Permalink
    Definition Classes
    AnyRef
  25. def toString(): String

    Permalink
    Definition Classes
    AnyRef → Any
  26. final def wait(arg0: Long, arg1: Int): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  27. final def wait(arg0: Long): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  28. final def wait(): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Deprecated Value Members

  1. def finalize(): Unit

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @Deprecated @deprecated @throws( classOf[java.lang.Throwable] )
    Deprecated

    (Since version ) see corresponding Javadoc for more information.

Inherited from SerializableLogging

Inherited from Serializable

Inherited from Serializable

Inherited from Minimizer[T, DF]

Inherited from AnyRef

Inherited from Any

Ungrouped