Neuron.Init
type typ =
| Uniform of float * float
| Gaussian of float * float
| Standard
| Tanh
| GlorotNormal
| GlorotUniform
| LecunNormal
| HeNormal
| Custom of int array -> Optimise.Algodiff.t
Initialisation types
*)val run : typ -> int array -> Optimise.Algodiff.t -> Optimise.Algodiff.t
Execute the computation in this neuron.
val to_string : typ -> string
Convert the neuron to its string representation. The string is often a summary of the parameters defined in the neuron.