The summary(model) command never completes.
K-fold cross validation was ran as follows (R caret package):
train_control <- trainControl(method="repeatedcv", number=10, repeats=0)
model <- train(as.factor(OneGM) ~., data=OneT, trControl=train_control, method="C5.0")
The dataset has 3,000 rows of 6 attributes. The train command completes in 10 seconds. When using a single model trained with C5.0 directly, not using caret, the model accuracy is 68%.
How do I debug why the summary(model) command won't complete? The R-Studio Stop icon is available, and it works. The command is not completing within 30 minutes.
UPDATE: summary(model$finalModel) never completes either.
Thanks for any help.