Class: BaseEstimator

BaseEstimator(params, defaults)

Base class for all transformers, estimators etc.

Constructor

new BaseEstimator(params, defaults)

Construct an estimator.
Parameters:
Name Type Description
params Object parameters of estimator
defaults Object default values of the parameters
Source:

Methods

(async) get_params(deep)

Return the parameters of the estimator.
Parameters:
Name Type Default Description
deep Boolean true Whether to create an independent copy of the parameters.
Source:

(async) set_params(params)

Set parameters of the estimator.
Parameters:
Name Type Description
params dictionary parameter values with names specified as keys.
Source: