package owl

  1. Overview
  2. Docs
Legend:
Library
Module
Module type
Parameter
Class
Class type
type neuron_typ = {
  1. mutable in_shape : int array;
  2. mutable out_shape : int array;
}
val create : unit -> neuron_typ
val connect : int array -> neuron_typ -> unit
val run : Owl_algodiff.S.t array -> 'a -> Owl_algodiff.S.t
val to_string : neuron_typ -> string