0
votes
0answers
8 views

How to use Modelmap for random forest classification in GUI

I am trying to use R for random forest classification and a beginner in R.How to use Modelmap for random forest classification in GUI
1
vote
2answers
114 views

is it neccessary to run random forest with cross validation at the same time

Random forest is a robust algorithm. In Random Forest, it trains several small trees and have OOB accuracy. However, is it necessary to run cross-validation with random forest at the same time ?
0
votes
2answers
514 views

R randomForest for classification

I am trying to do classification with randomForest, but I am repeatedly getting an error message for which there seems to be no apparent solution (randomForest has worked well for me doing regression ...
1
vote
1answer
343 views

Regression Tree Forest in Weka

I'm using Weka and would like to perform regression with random forests. Specifically, I have a dataset: Feature1,Feature2,...,FeatureN,Class 1.0,X,...,1.4,Good 1.2,Y,...,1.5,Good 1.2,F,...,1.6,Bad ...
1
vote
1answer
156 views

Random Forest in R - many classes

I want to do a multilabel classification with R randomForest. I have ten classes A..J, I found examples how to predict a single class, like: r = randomForest(J ~., data=train, importance=TRUE, ...
0
votes
1answer
635 views

scikit-learn RandomForestClassifier produces 'unexpected' results

I'm trying to use sk-learn's RandomForestClassifier for a binary classification task (positive and negative examples). My training data contains 1.177.245 examples with 40 features, in SVM-light ...
0
votes
0answers
222 views

Matlab TreeBagger Cost argument not working as it works with similar function fitensemble

The cost matrix of my TreeBagger class and fitensemble (Bag method) are both [0 8;1 0] for binary classification. The confusion matrix on fitensemble shows that the classfication tends to turn in the ...
0
votes
4answers
990 views

Random Forest: high accuracy by one class and very low accuracy by the other

I am new to random forest classifier. I am using it to classify a dataset that has two classes. - The number of features is 512. - The proportion of the data is 1:4. I.e, 75% of the data is from the ...
0
votes
1answer
105 views

How to estimate amount of memory needed for binary classifier?

Say I wanna create a binary classifier for detecting SPAM messages. I have a billion of training examples and about 20 features. I want my trained classifier to fit in memory (I will run it on cloud ...