Module Make.GaussianNoise

type neuron_typ = {
  1. mutable sigma : float;
  2. mutable in_shape : int array;
  3. mutable out_shape : int array;
}
val create : float -> neuron_typ
val connect : int array -> neuron_typ -> unit
val copy : neuron_typ -> neuron_typ
val to_string : neuron_typ -> string
val to_name : unit -> string