package owl-base

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

Module Make.LSTMSource

Sourcetype neuron_typ = {
  1. mutable wxi : t;
  2. mutable whi : t;
  3. mutable wxc : t;
  4. mutable whc : t;
  5. mutable wxf : t;
  6. mutable whf : t;
  7. mutable wxo : t;
  8. mutable who : t;
  9. mutable bi : t;
  10. mutable bc : t;
  11. mutable bf : t;
  12. mutable bo : t;
  13. mutable c : t;
  14. mutable h : t;
  15. mutable init_typ : Init.typ;
  16. mutable in_shape : int array;
  17. mutable out_shape : int array;
}
Sourceval create : ?time_steps:int -> ?inputs:int -> int -> 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 mkpar : neuron_typ -> t array
Sourceval mkpri : neuron_typ -> t array
Sourceval mkadj : neuron_typ -> t array
Sourceval update : neuron_typ -> t array -> unit
Sourceval run : t -> neuron_typ -> t
Sourceval to_string : neuron_typ -> string
Sourceval to_name : unit -> string