What is the general setup of classification problems?
What are the decision boundaries of a classification function?
What are some examples of Linear Classifiers?
How do these look on a graph vs non-linear classifiers?
affine –> ax + b (in 2D) but more generally they are straight lines in 2-D and planes in 3-D
What are the Discriminative approach to classification problems?
Discriminative approach:
* Dont know ηl(x), dont know fX(x) so instead we estimate the regression function of each class
* no need to calculate the maringal density fX as when we are calculating the argmax it has no contribution?? - ADD TO THIS
What is an example of the Discriminative approach? What are its advantages and disadvantages?
What is the Generative approach to classification problems?
What is an example of the Generative approach to classification problems?
What are its advantages and disadvantages?
Is it possible to combine the Discriminative and Generative approaches?
What is the Linear Discriminant Analysis?
What do we assume fl is?
What do we use our training data to estimate?
How do we derive the linear discriminant function?
Finally want is the function that defines LDA and what makes it linear?
How do we derive the second equation for Σ-hat?
What equation gives us the decision boundary between class 1 and class 2?
What the decision boundary for the simple LDA problem?
μi = 1/number of that label * sum of that xi in the vector
What isa useful way to understand the LDA?
In R, what are the functions I will use to classify the data set by Species type using LDA?
What is Quadratic discriminant analysis (QDA)? How does it differ from LDA?
How do we use the training data to estimate π-hatl, μ-hatl and Σ-hatl?
Thus how do we find the quadratic discriminant function (δQDAl(x) and how is the QDA classifier defined?ψQDAl(x)
How does it compare to LDA in parameter use?
Which approach is better? QDA or LDA?
ADD WHICH GRAPH IS BETTER FOR WHICH