Questions
- Can a well-calibrated model have low accuracy? What about the reverse: can a model with high accuracy be poorly calibrated?
- Take a limited classification dataset with, say, only 100 data points. Train a decision tree model using this dataset and then assess its calibration.
- Calibrate the model using Platt’s scaling. Measure the Brier score after calibration.
- Calibrate the model using isotonic regression. Measure the Brier score after calibration
- How do the Brier scores differ in (A) and (B)?
- Measure the AUC, accuracy, precision, recall, and F1 score of the model before and after calibration.
- Take a balanced dataset, say with 10,000 points. Train a decision tree model using it. Then check how calibrated it is.
- Calibrate the model using Platt’s scaling. Measure the Brier score after calibration.
- Calibrate the model using isotonic regression. Measure the Brier score after calibration.
- How do the Brier scores differ in (a) and (b)?
- Measure the AUC, accuracy...