Neuron.LambdaArraytype neuron_typ = {mutable lambda : Optimise.Algodiff.t array -> Optimise.Algodiff.t;mutable in_shape : int array;mutable out_shape : int array;}Neuron type definition.
val create : 
  int array ->
  (Optimise.Algodiff.t array -> Optimise.Algodiff.t) ->
  neuron_typCreate the neuron.
val connect : int array array -> neuron_typ -> unitConnect this neuron to others in a neural network.
val copy : neuron_typ -> neuron_typMake a deep copy of the neuron and its parameters.
val run : Optimise.Algodiff.t array -> neuron_typ -> Optimise.Algodiff.tExecute the computation in this neuron.
val to_string : neuron_typ -> stringConvert the neuron to its string representation. The string is often a summary of the parameters defined in the neuron.