Tagged Questions
2
votes
1answer
114 views
Parallel processing in R
I'm working with a custom random forest function that requires both a starting and ending point in a set of genomic data (about 56k columns).
I'd like to split the column numbers into subgroups and ...
1
vote
1answer
191 views
parallel prediction with cforest/randomforest prediction (with doSNOW)
I'm trying to speed up the prediction of a test-dataset (n=35000) by splitting it up and letting R run on smaller chunks. (Also, partys cforest-prediction of 35k rows doesn't work as my RAM is not ...
0
votes
0answers
68 views
speed up random forest on very large datasets [duplicate]
Possible Duplicate:
Suggestions for speeding up Random Forests
I want to build random forest on my data 129600 X 900. Moreover, I want to have not less than 1000 trees for regression. I ...
2
votes
1answer
281 views
Parallelize rfcv() function for feature selection in randomForest package
I wonder if anyone knows how to parallelize rfcv() function implemented in R-package 'randomForest'. Sorry if the question sounds very basic, but I tried to do this using 'foreach' without any ...
7
votes
3answers
933 views
Parallel Random Forests with doSMP and foreach drastically increase memory usage (on Windows)
When executing random forest in serial it uses 8GB of RAM on my system, when doing it in parallel it uses more than twice te RAM (18GB). How can I keep it to 8GB when doing it in parallel? Here's the ...