MIS Regression
Mean interval score (MIS) regression directly minimizes MIS, a scoring function for predictions of confidence intervals. This is done by using MIS as the loss function for deep neural networks. The formula to calculate MIS is also known as Winkler loss and is expressed as:
where and are the upper and lower bounds respectively, and is a fixed confidence level. Here is equivalent to , where is the desired confidence interval. Therefore, for a confidence interval. There are 3 parts to this loss function, which summed together equal the total mean interval score.
- Penalize distance between the upper and lower bounds.
- Penalize distance between the lower bound and actual value by a ratio of when the actual value is lower than the lower bound.
- Penalize distance between the actual value and upper bound by a ratio of when the actual value is higher than the upper bound.
Since the loss function for this model jointly includes the upper and lower bounds, the result outputs both, unlike with quantile regression.