Unit 5: Model Evaluation and Improvement - Subjective Questions

CSE252 — Introduction To Artificial Intelligence And Machine Learning • Practice Questions with Detailed Answers

20 questions

1

Define Mean Absolute Error (MAE). Explain its formula, interpretation, and one advantage and limitation of using it for regression model evaluation.

2

Explain Mean Squared Error (MSE) and Root Mean Squared Error (RMSE). How do they differ in interpretation and sensitivity to outliers?

3

Derive the relationship between MSE and RMSE, and calculate the RMSE for actual values and predicted values .

4

What is the score? Explain its formula, possible values, and meaning in regression model evaluation.

5

Compare MAE, MSE, RMSE, and score. Which metric would you select when outliers are important, and which would you select when interpretability is a priority?

6

Describe a confusion matrix for binary classification. Explain the meaning of true positives, true negatives, false positives, and false negatives.

7

Define classification accuracy, precision, and recall. Explain the type of error emphasized by each metric.

8

Explain the F1-score and derive its formula from precision and recall. Why is it useful for imbalanced classification problems?

9

What is an ROC curve and what does the ROC-AUC value represent? Explain how the classification threshold affects the curve.

10

A classifier produces , , , and . Calculate its accuracy, precision, recall, and F1-score, and interpret the results.

11

Explain why accuracy can be misleading for an imbalanced dataset. Which alternative metrics should be considered?

12

What is cross-validation? Describe the procedure for -fold cross-validation and explain how it helps estimate model generalization.

13

Distinguish between stratified cross-validation and ordinary -fold cross-validation. Why is stratification important for classification tasks?

14

What is hyperparameter tuning? Explain the difference between model parameters and hyperparameters with suitable examples.

15

Explain grid search for hyperparameter optimization. Include its procedure, advantages, and limitations.

16

Compare grid search and random search for hyperparameter tuning. Under what circumstances might random search be more efficient?

17

Design a model improvement strategy for a supervised learning problem using cross-validation and hyperparameter tuning. Explain how you would avoid overfitting during the evaluation process.

18

What is Explainable Artificial Intelligence (XAI)? Explain why explainability is important in machine learning applications.

19

Distinguish between global and local explanations in Explainable AI. Give one example of each.

20

Describe feature importance, permutation importance, and SHAP-based explanations. How do these methods help interpret a model?