Tagged Questions
1
vote
3answers
122 views
How are feature_importances in RandomForestClassifier determined?
I have a classification task with a time-series as the data input, where each attribute (n=23) represents a specific point in time. Besides the absolute classification result I would like to find out, ...
1
vote
1answer
270 views
Recursive feature elimination in 'caret' for 'randomForest': set different ntree parameter for the first forest
I am currently trying to optimize the random forest classifier for a very high-dimensional dataset (p > 200k) using recursive feature elimination (RFE). caret package has a nice implementation for ...
2
votes
1answer
274 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 ...
-1
votes
1answer
823 views
How to do feature selection with randomForest package?
I'm using randomForest in order to find out the most significant variables. I was expecting some output that defines the accuracy of the model and also ranks the variables based on their importance. ...
4
votes
1answer
1k views
How to use R Random forests to reduce attributes having no discrete classes?
I want to use Random forests for attribute reduction. One problem I have in my data is that I don't have discrete class - only continuous, which indicates how example differs from 'normal'. This class ...