package sklearn

  1. Overview
  2. Docs
Legend:
Page
Library
Module
Module type
Parameter
Class
Class type
Source

Module Sklearn.DictSource

Sourcetype t
Sourcemodule type BUILD = sig ... end
Sourcetype param_grid = [
  1. | `Ints of int list
  2. | `Floats of float list
  3. | `Strings of string list
  4. | `Bools of bool list
]
Sourcetype 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
]
Sourceval of_param_grid_alist : (string * param_grid) list -> t
Sourceval of_param_distributions_alist : (string * param_distributions) list -> t
Sourceval get : (module BUILD with type t = 'a) -> name:string -> t -> 'a
Sourceval get_opt : (module BUILD with type t = 'a) -> name:string -> t -> 'a option
Sourceval fold_py : f:('acc -> string -> Py.Object.t -> 'acc) -> init:'acc -> t -> 'acc
Sourceval fold : (module BUILD with type t = 'a) -> f:('acc -> string -> 'a -> 'acc) -> init:'acc -> t -> 'acc
Sourceval keys : t -> string list
Sourceval of_pyobject : Py.Object.t -> t
Sourceval to_pyobject : t -> Py.Object.t
Sourceval pp : Format.formatter -> t -> unit
Sourceval to_string : t -> string
Sourceval show : t -> string