I'm using R package of random forest to do regression on some biological data and my training data size is 38772 X 201 and I just wonder what would be a good values for the number of trees "ntree" and the number of variable per level "mtry" and if there is an approximate formula to find such parameter values. each row in my input data is a 200 character representing the amino acid sequence and I want to build a regression model to use such sequence in order to predict the distances between the proteins.
|
|
The default for mtry is quite sensible so there is not really a need to muck with it. There is a function There is no optimization for the number of bootstrap replicates. I often start with Here is the caveat: variable interactions stabilize at a slower rate than error so, if you have a large number of independent variables you need more replicates. I would keep the ntree an odd number so ties can be broken. For the dimensions of you problem I would start |
||||
|
|
The short answer is no. The The "correct" value for You can spend (read: waste) a lot of time tinkering with things like The caret package has a very general function Also, somehow I forgot that the ranfomForest package itself has a |
|||||
|
