0

I'm trying to build a machine learning model using caret's build in rf method.

when i do my cross-validation it uses about 6 GB of Ram but nothing happens?

My data set is 11.000 obs. with 16 variables. all of them are either intergers, numeric, factor. My code is:

trainControl <- trainControl(method ="cv", number = 10)
metricType <- "Accuracy"

## Random Forest ##

set.seed(10)
model.rf <- train(Udmeldt~., data = TrainData, method="rf", metric = metricType, trControl = trainControl)

i'm running it on a win 10, with 8 GB ram.

0 Answers0