Classification based on a thresholding of the scores
classify_with_scores(scores, vL, vU)A numeric vector of the classification (where 0.5 = inconclusive)
Numeric vector of the scores, computed with average_scoring, median_scoring, MAP_scoring or bayesian_scoring
The lower threshold
The upper threshold
Each decision \(\hat{t}_i\) is taken according to the following rule: $$ \hat{t}_i = \begin{cases} 0 & \text{if } y_i < v_L,\\ 1/2 & \text{if } v_L \leq y_i \leq v_U,\\ 1 & \text{if } y_i > v_U, \end{cases} $$ where \(y_i\) is the score for individual \(i\).