tobigithub / caret-machine-learning

Practical examples for the R caret machine learning package
MIT License
67 stars 50 forks source link

method wsrf kills RGUI #12

Open tobigithub opened 8 years ago

tobigithub commented 8 years ago

hard crash, no recover


require(mlbench)
require(caret)

# load diabetes set 768 x 9
data(PimaIndiansDiabetes) 
dim(PimaIndiansDiabetes) 

# train rbf 
t2 <- train(diabetes~., data=PimaIndiansDiabetes, method="wsrf")
t2