package owl-base

  1. Overview
  2. Docs
Legend:
Page
Library
Module
Module type
Parameter
Class
Class type
Source

Module Optimise.ParamsSource

Sourcetype typ = Owl_neural_neuron.Make(Owl_optimise_generic.Make(Owl_algodiff_generic.Make(A))).Optimise.Params.typ = {
  1. mutable epochs : float;
  2. mutable batch : Batch.typ;
  3. mutable gradient : Gradient.typ;
  4. mutable loss : Loss.typ;
  5. mutable learning_rate : Learning_Rate.typ;
  6. mutable regularisation : Regularisation.typ;
  7. mutable momentum : Momentum.typ;
  8. mutable clipping : Clipping.typ;
  9. mutable stopping : Stopping.typ;
  10. mutable checkpoint : Checkpoint.typ;
  11. mutable verbosity : bool;
}
Sourceval default : unit -> typ
Sourceval config : ?batch:??? -> ?gradient:??? -> ?loss:??? -> ?learning_rate:??? -> ?regularisation:??? -> ?momentum:??? -> ?clipping:??? -> ?stopping:??? -> ?checkpoint:??? -> ?verbosity:??? -> float -> typ
Sourceval to_string : typ -> string