diff --git a/hw1/notes b/hw1/notes new file mode 100644 index 0000000..9d66942 --- /dev/null +++ b/hw1/notes @@ -0,0 +1,18 @@ +1. (a) + +To test the quality of a regression fit use mean squared error. + + 1 ₙ +MSE = ─── ∑ (yᵢ - f̂(xᵢ))² + n ⁱ⁼¹ + + + +Ave(y₀ - f(x₀))² + + +To test the quality of a model in the classification settings, use the error rate: + + 1 ₙ + E = ─── ∑ I(yᵢ ≠ ŷᵢ) + n ⁱ⁼¹