Questions: Support Vector Regression

5 questions to test your understanding

Score: 0 / 5
Question 1 Multiple Choice

An SVR model is trained with ε = 0.5. A training point has a predicted value of 10.0 and an actual value of 10.3. How does this point affect the model's parameters?

AIt contributes a loss of 0.3 × C, penalized proportionally to how far it falls outside the tube
BIt contributes nothing to the loss — it falls within the epsilon tube and is completely ignored when determining model parameters
CIt becomes a support vector because its prediction is not exactly correct
DIt contributes a squared penalty of 0.3² as in ordinary least squares regression
Question 2 Multiple Choice

In ordinary least squares regression, every training point — including those very close to the fitted line — contributes to the model parameters. How does SVR with ε = 1.0 handle a point that is 0.1 units from the prediction?

AIt contributes equally to SVR and linear regression since the numerical deviation is the same
BIt contributes more to SVR because support vector methods weight points near the boundary more heavily
CIt contributes nothing to SVR — it lies inside the epsilon tube and is ignored when determining model parameters
DIt contributes to SVR only if it happens to be geometrically closest to the regression hyperplane
Question 3 True / False

In SVR, increasing ε (the tube width) while holding all else constant generally results in fewer support vectors and a simpler, smoother model.

TTrue
FFalse
Question 4 True / False

Like ordinary least squares linear regression, SVR uses the entire training set to determine the final regression function.

TTrue
FFalse
Question 5 Short Answer

Explain why SVR is described as 'robust to outliers' compared to ordinary least squares regression. What role does the epsilon-insensitive tube play in this robustness?

Think about your answer, then reveal below.