package owl

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

Module Neuron.RecurrentSource

Sourcetype neuron_typ = Owl_neural_generic.Make_Embedded(Owl_dense_ndarray.D).Neuron.Recurrent.neuron_typ = {
  1. mutable whh : Optimise.Algodiff.t;
  2. mutable wxh : Optimise.Algodiff.t;
  3. mutable why : Optimise.Algodiff.t;
  4. mutable bh : Optimise.Algodiff.t;
  5. mutable by : Optimise.Algodiff.t;
  6. mutable h : Optimise.Algodiff.t;
  7. mutable hiddens : int;
  8. mutable act : Activation.typ;
  9. mutable init_typ : Init.typ;
  10. mutable in_shape : int array;
  11. mutable out_shape : int array;
}
Sourceval create : ?time_steps:int -> ?inputs:int -> int -> int -> Activation.typ -> Init.typ -> 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 to_string : neuron_typ -> string
Sourceval to_name : unit -> string
OCaml

Innovation. Community. Security.