class sklearn.ensemble.RandomForestClassifier(n_estimators=10,
criterion=\'gini\',
This wonderful article has a detailed explanation of tunable parameters, how to track performance vs speed trade-off, some practical tips, and how to perform grid-search.
From my experience, there are three features worth exploring with the sklearn RandomForestClassifier, in order of importance:
n_estimators
max_features
criterion
n_estimators
is not really worth optimizing. The more estimators you give it, the better it will do. 500 or 1000 is usually sufficient.
max_features
is worth exploring for many different values. It may have a large impact on the behavior of the RF because it decides how many features each tree in the RF considers at each split.
criterion
may have a small impact, but usually the default is fine. If you have the time, try it out.
Make sure to use sklearn's GridSearch (preferably GridSearchCV, but your data set size is too small) when trying out these parameters.
If I understand your question correctly, though, you only have 9 samples and 3 classes? Presumably 3 samples per class? It's very, very likely that your RF is going to overfit with that little amount of data, unless they are good, representative records.
The crucial parts are usually three elements:
sqrt(d)
) - you might one to play around a bit as it significantly alters behaviour of the whole tree. sqrt heuristic is usually a good starting point but an actual sweet spot might be somewhere elsen_estimators
is good one as others said. It is also good at dealing with the overfitting when increasing it.
But I think min_sample_split
is also helpful when dealing with overfitting occurred in a small-sample but big-features dataset.