Which of the following correctly describes common regression…
Which of the following correctly describes common regression evaluation metrics? Note: yᵢ = actual value ŷᵢ (y-hat) = predicted value ȳ (y-bar) = mean of actual values m: number of samples Formulas: Mean Absolute Error (MAE) = (1/m) × Σ|yᵢ − ŷᵢ| Mean Squared Error (MSE) = (1/2m) × Σ(yᵢ − ŷᵢ)² Root Mean Squared Error (RMSE) = √MSE Coefficient of Determination (R²) = 1 − [Σ(yᵢ − ŷᵢ)² / Σ(yᵢ − ȳ)²]
Read Details