Decision Trees Overview

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 provide definitions and insights into key concepts related to Decision Trees as discussed in the lecture notes.

Study Analytics
Name
Mastery
Learn
Test
Matching
Spaced

No study sessions yet.

10 Terms

1
New cards

Decision Tree

A decision tree is a flowchart-like structure used to classify data into predefined classes based on a set of decision rules. Algorithm can pick the same attribute more than once, don’t use all. stops when only one outcome. Drawbacks: some attributes should be considrered

2
New cards

Root Node

The top attribute in a decision tree from which decisions branch out.

3
New cards

Child Node

Subsequent attributes in a decision tree that follow from the root node.

4
New cards

Leaf Node

The final nodes in a decision tree that contain the values of the class (outcome) variable.

5
New cards

Recursive Partitioning

The process of splitting observations based on attributes to maximize agreement.

6
New cards

Entropy

A measure of the degree of agreement among observations in a given partition; lower entropy indicates higher agreement. lower=more agreement. m=2 for binary, pk is prob. of class

7
New cards

Hyper-parameter

Constraints put on the algorithm that affect the decision tree creation, such as maximum tree depth.

8
New cards

Agreement

The extent to which observations in a given partition have the same value for the outcome variable.

9
New cards

Classification

The process of predicting the target class for a new observation based on decision rules.

10
New cards

Outcome Variable

The variable that represents the result of a classification decision, such as getting a loan (Yes/No).