Nothing
trainModels = function(learner, tasks, control) {
models = vector("list", length(tasks))
secs = 0
for (i in seq_along(models)) {
secs = secs + measureTime({
models[[i]] = train(learner, tasks[[i]])
})
}
list(models = models, train.time = secs)
}
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.