Nothing
# Copyright (C) Kevin R. Coombes, 2007-2013
learnNNET <- function(data, status, params, pfun) {
tdata <- data.frame(Stat=status, t(data))
arglist <- c(list(formula = Stat ~ ., data=tdata), params)
model <- do.call(nnet, arglist)
FittedModel(pfun, data, status,
details=list(model=model))
}
predictNNET <- function(newdata, details, status, ...) {
predict(details$model, t(newdata), ...)
}
modelerNNET <- Modeler(learnNNET, predictNNET, size=5)
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.