scikit-learn trees wrappers.
TREES table in specs. Registered under sklearn. hub keys, mirroring the native TuiML trees family.Classes
scikit-learn DecisionTreeClassifier (hub key sklearn.DecisionTreeClassifier).
Wraps DecisionTreeClassifier. Accepts that estimator's constructor parameters as keyword arguments; call get_parameter_schema for the full list with types and defaults derived from the installed scikit-learn.
Commonly set: criterion, max_depth, random_state.
__init__( self, **params, )
scikit-learn ExtraTreeClassifier (hub key sklearn.ExtraTreeClassifier).
ExtraTreeClassifier. Accepts that estimator's constructor parameters as keyword arguments; call get_parameter_schema for the full list with types and defaults derived from the installed scikit-learn.__init__( self, **params, )
scikit-learn DecisionTreeRegressor (hub key sklearn.DecisionTreeRegressor).
Wraps DecisionTreeRegressor. Accepts that estimator's constructor parameters as keyword arguments; call get_parameter_schema for the full list with types and defaults derived from the installed scikit-learn.
Commonly set: criterion, max_depth, random_state.
__init__( self, **params, )
scikit-learn ExtraTreeRegressor (hub key sklearn.ExtraTreeRegressor).
ExtraTreeRegressor. Accepts that estimator's constructor parameters as keyword arguments; call get_parameter_schema for the full list with types and defaults derived from the installed scikit-learn.__init__( self, **params, )