package sklearn

  1. Overview
  2. Docs
Legend:
Library
Module
Module type
Parameter
Class
Class type
type t
module type BUILD = sig ... end
type param_grid = [
  1. | `Ints of int list
  2. | `Floats of float list
  3. | `Strings of string list
  4. | `Bools of bool list
]
type param_distributions = [
  1. | `Ints of int list
  2. | `Floats of float list
  3. | `Strings of string list
  4. | `Bools of bool list
  5. | `Dist of [ `Rv_generic ] Scipy.Obj.t
]
val of_param_grid_alist : (string * param_grid) list -> t
val of_param_distributions_alist : (string * param_distributions) list -> t
val get : (module BUILD with type t = 'a) -> name:string -> t -> 'a
val get_opt : (module BUILD with type t = 'a) -> name:string -> t -> 'a option
val fold_py : f:('acc -> string -> Py.Object.t -> 'acc) -> init:'acc -> t -> 'acc
val fold : (module BUILD with type t = 'a) -> f:('acc -> string -> 'a -> 'acc) -> init:'acc -> t -> 'acc
val keys : t -> string list
val of_pyobject : Py.Object.t -> t
val to_pyobject : t -> Py.Object.t
val pp : Stdlib.Format.formatter -> t -> unit
val to_string : t -> string
val show : t -> string