Top "Random-forest" questions

In learning algorithms and statistical classification, a random forest is an ensemble classifier that consists in many decision trees.

How can I speed up the training of my random forest?

I'm trying to train several random forests (for regression) to have them compete and see which feature selection and which …

r parallel-processing random-forest doparallel parallel-foreach
Issues with tuneGrid parameter in random forest

I've been dealing with some extremely imbalanced data and I would like to use stratified sampling to created more balanced …

r random-forest r-caret
muti output regression in xgboost

Is it possible to train a model in Xgboost that have multiple continuous outputs (multi regression)? What would be the …

machine-learning random-forest xgboost
What does negative %IncMSE in RandomForest package mean?

I used RandomForest for a regression problem. I used importance(rf,type=1) to get the %IncMSE for the variables and …

r statistics random-forest prediction
Is there easy way to grid search without cross validation in python?

There is absolutely helpful class GridSearchCV in scikit-learn to do grid search and cross validation, but I don't want to …

python scikit-learn random-forest grid-search
Variable importance using the caret package (error); RandomForest algorithm

I am trying to obtain the variable importance of a rf model in any way. This is the approach I …

r random-forest r-caret
Scikit-learn - ValueError: Input contains NaN, infinity or a value too large for dtype('float32') with Random Forest

First, I have checked the different posts concerning this error and none of them can solve my issue. So I …

python scikit-learn random-forest valueerror
What does the parameter 'classwt' in RandomForest function in RandomForest package in R stand for?

The help page for randomforest::randomforest() says: "classwt - Priors of the classes. Need not add up to one. Ignored …

r random-forest
Minimum number of observation when performing Random Forest

Is it possible to apply RandomForests to very small datasets? I have a dataset with many variables but only 25 observation …

machine-learning random-forest sample-size
Use of randomforest() for classification in R?

I originally had a data frame composed of 12 columns in N rows. The last column is my class (0 or 1). I …

r random-forest