So I'm trying to build an ID3 decision tree but in sklearn's documentation, the algo they use is CART. But I also read that ID3 uses Entropy and Information Gain to construct a decision tree.

Tried dtree=DecisionTreeClassifier(criterion='entropy') but the resulting tree is unreliable.

What parameters should I edit in DecisionTreeClassifier() to get an ID3 decision tree?

More Leejames Merlas's questions See All
Similar questions and discussions