I'm trying to figure out which decision tree method from scikit-learn package will better suit my needs for performing classification task.
However, I found that there are two decision tree models available there:
- standard DecisionTreeClassifier based on optimized CART algorithm from scikit.tree package.
- ensemble method ExtraTreeClassifier from scikit.ensemble package.
Can anyone specify the advantages and disadvatages of using each of these models?