Computer Science, asked by bhenderson6308, 11 months ago

Give a decision trees that makes same classification as h1

Answers

Answered by arpita8137
4

The specific type of decision tree used for machine learning contains no random transitions. To use a decision tree forclassification or regression, one grabs a row of data or a set of features and starts at the root, and then through each subsequentdecision node to the terminal node.

Answered by ruhi455
0

Explanation:

Decision tree uses entropy and information gain to select a feature which gives the best split. Intuitively, we can say that best split is when we can separate the classes accurately based on that feature

Similar questions