Machine Learning - Decision Tree Learning

0.0(0)
studied byStudied by 0 people
learnLearn
examPractice Test
spaced repetitionSpaced Repetition
heart puzzleMatch
flashcardsFlashcards
Card Sorting

1/9

flashcard set

Earn XP

Description and Tags

These flashcards contain key vocabulary and definitions related to decision tree learning in machine learning.

Study Analytics
Name
Mastery
Learn
Test
Matching
Spaced

No study sessions yet.

10 Terms

1
New cards

Decision Tree

A tree-like model used for classification and regression, where each internal node represents a feature and each leaf node represents a class label.

2
New cards

Entropy

A measure of disorder or impurity in a set of examples, used to assess the quality of splits in a decision tree.

3
New cards

Information Gain

The expected reduction in entropy resulting from a split on an attribute, used to determine the best attribute for decision making.

4
New cards

Overfitting

A modeling error that occurs when a decision tree is too complex and fits the training data too well, failing to generalize to unseen data.

5
New cards

Pruning

The process of removing subtrees from a decision tree to reduce complexity and improve accuracy on test data.

6
New cards

ID3 Algorithm

An algorithm invented by J. Ross Quinlan in 1979 that builds decision trees using Information Gain to select the most useful attributes.

7
New cards

Leaf Node

A terminal node in a decision tree that provides a classification decision.

8
New cards

Disjunctive Normal Form (DNF)

A standard way of expressing a logical formula as a disjunction of conjunctions, which can be derived from decision trees.

9
New cards

Bias in Decision-Tree Induction

The tendency of decision tree algorithms to prefer simpler trees with less depth, influenced by the method of attribute selection.

10
New cards

Continuous Features

Real-valued features that can be split within specified ranges in a decision tree.