SklearnEstimator | R Documentation |
A dummy base R6 class that includes fit, predict functions for estimators
R6 Class of SklearnEstimator
less::BaseEstimator
-> SklearnEstimator
fit()
Dummy fit function
SklearnEstimator$fit()
sklearn <- SklearnEstimator$new() sklearn$fit()
predict()
Dummy predict function
SklearnEstimator$predict()
sklearn$predict()
get_type()
Auxiliary function returning the type of the class e.g 'estimator'
SklearnEstimator$get_type()
sklearn$get_type()
get_isFitted()
Auxiliary function returning the isFitted flag
SklearnEstimator$get_isFitted()
sklearn$get_isFitted()
clone()
The objects of this class are cloneable with this method.
SklearnEstimator$clone(deep = FALSE)
deep
Whether to make a deep clone.
## ------------------------------------------------ ## Method `SklearnEstimator$fit` ## ------------------------------------------------ sklearn <- SklearnEstimator$new() sklearn$fit() ## ------------------------------------------------ ## Method `SklearnEstimator$predict` ## ------------------------------------------------ sklearn$predict() ## ------------------------------------------------ ## Method `SklearnEstimator$get_type` ## ------------------------------------------------ sklearn$get_type() ## ------------------------------------------------ ## Method `SklearnEstimator$get_isFitted` ## ------------------------------------------------ sklearn$get_isFitted()
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.