Final Review Flashcards
Who developed the VC dimension?
Dr. Vladimir Vapnik and Dr. Chervonenkis
What does VC stand for?
Vapnik-Chervonekis
Why was the VC dimension developed?
To help scientists develop better machine learning models that would be better at classifying data
What is the VC dimension?
The Vapnik-Chervonenkis dimension of a hypothesis space is the maximum number of points that can be “shattered” by the hypothesis of that space
In terms of VC dimension, what does “shattering” mean?
“Shattering” means that for every possible way of labeling these points (with binary labels), there is a hypothesis in the space that correctly classifies the points according to that labeling
Is either of these true? Why or why not?
The VC dimension of the hypothesis class of circles is lower than that of squares.
The VC dimension of the hypothesis class of squares is lower than that of circles.
No, because both have a VC dimension of 3.
Is this true? Why or why not?
The VC dimension of the hypothesis class of rings is higher that that of circles.
Yes, because rings have a VC dimension of 4 while circles have a VC dimension of 3.
What are 2 important notes when discussing the VC dimension of a hypothesis space?
- Knowing if the hypothesis space is centered on the origin
- Knowing that the VC dimension is NOT always equivalent to 1 + (number of dimensions)
Is either of these true? Why or why not?
The VC dimension of circles is higher than that of squares.
The VC dimension of squares is higher that that of circles.
No, because both have a VC dimension of 3.
Who Invented Bayes’ Rule?
Thomas Bayes
What was the goal of Bayes’ Rule?
To solve the problem of inverse probability - inferring the probability of causes (hypotheses) from observed effects (data)
What is Bayes’ Rule?
A fundamental theorem in probability theory for updating the probability of a hypothesis based on new evidence
What is the formula for Bayes’ Rule?
P(h|D) = [P(D|h) * P(h)] / P(D)
In Bayes’ Rule, what is P(h|D) and what does it represent?
The posterior probability of the hypothesis given the data.
It represents our updated belief in the hypothesis after seeing the data.
In Bayes’ Rule, what is P(D|h) and what does it represent?
P(D|h) is the likelihood, which is the probability of observing the data assuming the hypothesis is true.
It tells us how likely the observed data is under the assumption of the hypothesis.