Say I train a model in caret, e.g.:

RFmodel <- train(X,Y,method='rf',trControl=myCtrl,tuneLength=1)

How can I save this to disk and load it later in R?

How about an object of the class "resamples"?

resamps <- resamples(
        list(   RF = RFmodel,
                SVM = SVMmodel,
                KNN = KNNmodel,
                NN = NNmodel
                ))

Thanks,

James

        [[alternative HTML version deleted]]

______________________________________________
R-help@r-project.org mailing list
https://stat.ethz.ch/mailman/listinfo/r-help
PLEASE do read the posting guide http://www.R-project.org/posting-guide.html
and provide commented, minimal, self-contained, reproducible code.

Reply via email to