Login to unlock
Machine Learning Fundamentals · Phase 5: Classification · Probabilistic & Margin-Based Methods

Probabilistic & Margin-Based Methods — Checkpoint Quiz

Checkpoint quiz 3 questions
Back to course

Check your understanding of this module before moving on.

?

Checkpoint quiz 3 questions

A quick check on this module's key ideas before you move on
0/3
Question 01

Why is Naive Bayes called "naive"?

B is correct. Naive Bayes multiplies together each feature's individual likelihood as if features don't interact at all, given the class. That independence assumption is almost never exactly true, but the model is often useful anyway.
Question 02

In a Support Vector Machine, what is the "margin"?

B is correct. SVM looks for the decision boundary that maximizes this gap, the margin, on the theory that a wider margin generalizes better to new data.
Question 03

What does the "kernel trick" let an SVM do?

B is correct. Kernels compute what the dot product between two points would be in a higher-dimensional space, without ever actually constructing that space, which makes non-linear boundaries computationally feasible.