zachmayer / caretEnsemble

caret models all the way down :turtle:
http://zachmayer.github.io/caretEnsemble/
Other
226 stars 74 forks source link

If both methodList and tuneList are specified, use the union of both sets #54

Closed zachmayer closed 10 years ago

zachmayer commented 10 years ago

all methodList NOT IN tuneList get added with arguments = NULL all method IN tuneList get added with arguments = NULL

So if you specify: methodList='rf' tuneList=list(rf=list(tuneLength=10), rpart=list(tuneLength=5))

3 models are fit: rf with default train arguments rf with tuneLength 10 rpart with tuneLength 10

This is post 1.0

zachmayer commented 10 years ago

Depends on #53

zachmayer commented 10 years ago

Closed by #56