Machine Learning: Decision Trees for Classification

0.0(0)
Studied by 0 people
call kaiCall Kai
learnLearn
examPractice Test
spaced repetitionSpaced Repetition
heart puzzleMatch
flashcardsFlashcards
GameKnowt Play
Card Sorting

1/12

flashcard set

Earn XP

Description and Tags

These flashcards cover key vocabulary and concepts related to decision trees in machine learning, particularly their structure, function, and methods for ensuring accuracy and preventing overfitting.

Last updated 6:49 AM on 4/28/26
Name
Mastery
Learn
Test
Matching
Spaced
Call with Kai

No analytics yet

Send a link to your students to track their progress

13 Terms

1
New cards

Decision Tree

A hierarchical structure made up of nodes and edges used for classification tasks.

2
New cards

Node

An object in a decision tree representing a question or decision point.

3
New cards

Edge

A directed link from a parent node to a child node.

4
New cards

Leaf

A node that has no outgoing edges to child nodes and signifies a final decision.

5
New cards

Root Node

The top node of a decision tree with no parent.

6
New cards

Depth of a Node

The number of edges that must be followed to reach that node from the root node.

7
New cards

Decision Tree Classifier (DTC)

A decision tree specifically built for classification tasks, where each leaf corresponds to a class.

8
New cards

Hyperplane

A decision boundary used to divide feature space in classification tasks.

9
New cards

Gini Impurity Measure

A measure of impurity in a node given by the formula: Gini=P0(1P0)+P1(1P1)Gini = P_0 (1-P_0) + P_1 (1-P_1).

10
New cards

Overfitting

A condition where a model learns the details of the training data too well, leading to poor generalization on unseen data.

11
New cards

Early Stopping

A technique used to prevent further growth of the tree based on node statistics, aimed at reducing overfitting.

12
New cards

Cost Complexity Pruning

A method to prevent overfitting by reducing the size of an already trained decision tree.

13
New cards

Probability Estimate in DTC

The proportion of instances from the predicted class in the resulting leaf, provided by the method DTC.predictextproba(X)DTC.predict ext{-}proba(X).