Randomized Parameter Search¶
Randomized search on hyper parameters.
Documentation¶
Performs a randomized parameter search returning scores and best model found. Uses table as a “hypercube” of parameters to sample from. Not all parameter combinations are tested, but rather a fixed number of parameter settings is sampled from the specified distributions. All combinations of parameters from all columns have equal chance of beeing sampled. Use masked values for parameter/columns with different lengths.
Definition¶
Input ports¶
- in-model
Type: modelDescription: in-model- parameter space
Type: tableDescription: param-space- X
Type: tableDescription: X- Y
Type: tableDescription: Y- cross-validation
Type: [(table,table)]Description: cross-validationOptional number of ports: 0–1 (default: 0)
Output ports¶
- results
Type: tableDescription: results- parameters
Type: tableDescription: parameters- out-model
Type: modelDescription: out-model
Configuration¶
- Cross validation splits (cv)
Number of fold in the default K-Fold cross validation. Ignored when cross-validation port is given
- iterations (n_iter)
Number of randomized searches done
Implementation¶
- class node_paramsearch.ParameterSearch_Randomized[source]