Backprop.DifferentiableDifferentiable functions.
module Derivable : sig ... endDerivable functions.
A differentiable function. Given an input x, such a function f returns the output f(x), and the function which given the variation in the output provides the variation in the input.
val of_derivable : Derivable.t -> (float, float) tBuild from a derivable real function.
val sigmoid : (float, float) tThe sigmoid activation function.
val tanh : (float, float) tHyperbolic tangent.
val relu : (float, float) tThe rectified linear unit activation function.
val square : (float, float) tThe square function.
val sin : (float, float) tThe sine function.
val log : (float, float) tThe log function.
module Linear : sig ... endmodule Vector : sig ... endFunctions operating on vectors.
module Matrix : sig ... end