package owl-opt

  1. Overview
  2. Docs

Parameters

module P : Prms.PT

Signature

objective function value type

type prm = Owl.Algodiff.D.t

paramter type

type prms = prm P.t

user-defined paramter record type

type f = prms -> fv

objective function type

type state

internal state

type stop = state -> bool

stopping criterion function type

val iter : state -> int

iter s returns the number of iterations for optimisation state s

val prms : state -> prms

prms s returns the optimisation parameters of state s

val f : state -> f

f s returns the objective function of state s

val fv : state -> float

fv s returns the objective function value of state s

val init : prms0:prms -> f:f -> unit -> state

init ~prms0 ~f () returns an initialises optimisation state for initial parmaters prms0 and objective function f

val stop : state -> bool

stop s is the default stopping criterion, which prints out the iteration and objective function value at each optimisation iteration and terminates when the objective function value goes below 1E-4

val min : ?stop:stop -> ?beta:float -> lr:Lr.t -> state -> state

min ?(stop=stop) ?(beta=0.9) ~lr s minimises f for optimisation state s using Rmsprop. Once the stopping criterion is reached, the function returns the optimised state. The hyperparamters beta is defined here.

val max : ?stop:stop -> ?beta:float -> lr:Lr.t -> state -> state

max ?(stop=stop) ?(beta=0.9) ~lr s is similar to min but maximises f.