Decision Tree

0.0(0)
studied byStudied by 0 people
0.0(0)
full-widthCall with Kai
learnLearn
examPractice Test
spaced repetitionSpaced Repetition
heart puzzleMatch
flashcardsFlashcards
GameKnowt Play
Card Sorting

1/10

encourage image

There's no tags or description

Looks like no tags are added yet.

Study Analytics
Name
Mastery
Learn
Test
Matching
Spaced
Call with Kai

No study sessions yet.

11 Terms

1
New cards

Classification

A method that predicts which category a new observation belongs to using a labeled training dataset.

2
New cards

When To Use Classification

Use when the outcome variable is categorical (e.g., Default vs. No Default, Spam vs. Not Spam).

3
New cards

Outcome Variable (Target)

The categorical variable you want to predict.

The final predicted value in a Leaf Node.

4
New cards

Predictor Variables (Inputs / Features)

The attributes used to split the data and make decisions at each node

5
New cards

Maximum Depth (max_depth)

The maximum number of splits allowed from the root node to any leaf node.

6
New cards

Maximum Depth (max_depth): Small Value

Produces a less complex tree.

7
New cards

Maximum Depth (max_depth): Large Value

Produces a more complex (deeper) tree

8
New cards

Minimum Split (min_split)

The minimum number of observations required in a node to attempt an additional split.

9
New cards

Minimum Split (min_split): Small Value

Produces a more complex tree (allows splitting smaller groups).

10
New cards

Minimum Split (min_split): Large Value

Produces a less complex tree (prevents splitting small groups).

11
New cards

Confusion Matrix

Used to check the accuracy of the model by comparing the predicted outcomes to the observed (actual) outcomes in the validation set