Nothing
train_models <- function(container, algorithms, ...) {
# helper method to make it easier to train models by algorithm name(s)
# output is a list(algorithm_name=model, ..)
# hopefully, this method can disappear after refactoring train_model
result = list()
for (algorithm in algorithms) {
model = train_model(container, algorithm, ...)
result[[algorithm]] = model
}
return(result)
}
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.