Module Sig.Regularisation

Regularisation module

type typ =
  1. | L1norm of float
  2. | L2norm of float
  3. | Elastic_net of float * float
  4. | None

Types of regularisation functions.

val run : typ -> Algodiff.t -> Algodiff.t

Execute the computations defined in module typ.

val to_string : typ -> string

Convert the module typ to its string representation.