#'Automatic Hyperparameter tuning using cross-validation of a list of learners
#'Input: lrns(list of learners)
#'Output: lrns(hyperparameter tuned list of learners
tuneLearners<-function(lrns,task)
{
lrns<-lapply(lrns,FUN =tuningFunction,task)
return(lrns)
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.