CAP4611 - Decision Trees (L3.pdf)

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

1/12

encourage image

There's no tags or description

Looks like no tags are added yet.

Last updated 5:31 PM on 9/7/26
Name
Mastery
Learn
Test
Matching
Spaced
Call with Kai
Chat

No analytics yet

Send a link to your students to track their progress

13 Terms

1
New cards

supervised learning

use data to find a model that can accurately predict the labels of new examples

2
New cards

class label

knowt flashcard image
3
New cards

classification

supervised learning on categorical labels

4
New cards

splitting rules

“if-else” decisions based on features

5
New cards

decision tree

a nested sequence of splitting rules with a class label as a return value

<p>a nested sequence of splitting rules with a class label as a return value</p>
6
New cards

decision stump

simple decision tree with 1 splitting rule based on thresholding 1 feature

<p>simple decision tree with 1 splitting rule based on thresholding 1 feature</p>
7
New cards

classification accuracy

most intuitive score; “If we use this rule, how many examples do we label correctly?”

8
New cards

mode

baseline rule predicts the ___ (no split)

9
New cards

training phase

use feature matrix ‘X’ and label vector ‘y’ to find a ‘model’

10
New cards

prediction phase

given an example x_i, use ‘model’ to predict a label ‘yhat_i’ (e.g. “sick” or “not sick’)

11
New cards

training error

fraction of times our prediction yhat_i does not equal the true y_i label

12
New cards

greedy recursive splitting

use a sequence of stumps to fit a tree

<p>use a sequence of stumps to fit a tree</p>
13
New cards

information gain

splitting score based on decreasing entropy