package owl-base

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

Module Make.NormalisationSource

Sourcetype neuron_typ = {
  1. mutable axis : int;
  2. mutable beta : Optimise.Algodiff.t;
  3. mutable gamma : Optimise.Algodiff.t;
  4. mutable mu : Optimise.Algodiff.t;
  5. mutable var : Optimise.Algodiff.t;
  6. mutable decay : Optimise.Algodiff.t;
  7. mutable training : bool;
  8. mutable in_shape : int array;
  9. mutable out_shape : int array;
}
Sourceval create : ?training:bool -> ?decay:float -> ?mu:Optimise.Algodiff.A.arr -> ?var:Optimise.Algodiff.A.arr -> int -> neuron_typ
Sourceval connect : int array -> neuron_typ -> unit
Sourceval init : neuron_typ -> unit
Sourceval reset : neuron_typ -> unit
Sourceval mktag : int -> neuron_typ -> unit
Sourceval update : neuron_typ -> Optimise.Algodiff.t array -> unit
Sourceval load_weights : neuron_typ -> Optimise.Algodiff.t array -> unit
Sourceval save_weights : neuron_typ -> Optimise.Algodiff.t array
Sourceval to_string : neuron_typ -> string
Sourceval to_name : unit -> string
OCaml

Innovation. Community. Security.