Find more posts tagged with
Sort by:
1 - 1 of
11
Hi!
First, it's "guess subset ratio", "guess" as in "try to determine a good value".
The subset ratio in Random Forest is used to select a random subset of attributes in every step when creating the trees to build the forest. The ratio is applied to the number of all attributes. If the ratio is 0.3, for example, and you have 100 attributes, 30 will be selected randomly for each new step.
You could try different values, but if you have enough trees, the effect of this setting will be small, as decision trees are already quite good at attribute selection.
If the subset ratio is too small, you will often have a situation where the tree doesn't have relevant attributes to choose. If it is too high, the trees will be less random and more similar to each other, which could lead to an overfitted model.
Regards,
Balázs
First, it's "guess subset ratio", "guess" as in "try to determine a good value".
The subset ratio in Random Forest is used to select a random subset of attributes in every step when creating the trees to build the forest. The ratio is applied to the number of all attributes. If the ratio is 0.3, for example, and you have 100 attributes, 30 will be selected randomly for each new step.
You could try different values, but if you have enough trees, the effect of this setting will be small, as decision trees are already quite good at attribute selection.
If the subset ratio is too small, you will often have a situation where the tree doesn't have relevant attributes to choose. If it is too high, the trees will be less random and more similar to each other, which could lead to an overfitted model.
Regards,
Balázs
First, it's "guess subset ratio", "guess" as in "try to determine a good value".
The subset ratio in Random Forest is used to select a random subset of attributes in every step when creating the trees to build the forest. The ratio is applied to the number of all attributes. If the ratio is 0.3, for example, and you have 100 attributes, 30 will be selected randomly for each new step.
You could try different values, but if you have enough trees, the effect of this setting will be small, as decision trees are already quite good at attribute selection.
If the subset ratio is too small, you will often have a situation where the tree doesn't have relevant attributes to choose. If it is too high, the trees will be less random and more similar to each other, which could lead to an overfitted model.
Regards,
Balázs