User:IssaRice/Scoring rule

From Machinelearning

how can we formalize the idea of a rule for scoring predictions?

first pass

we can start with a list s1,,sn of statements. each statement makes a yes/no prediction about the future, like "the die will show 3 when rolled". then we have a list of probabilities p1,,pn where pj is the probability someone assigns to sj being true. now, reality evaluates each statement, giving us a yes/no answer r(sj){0,1}. our probabilities are scored against this response from reality. so a scoring rule S can be some function of p1,,pn,r(s1),,r(sn). so the type can be S:[0,1]n×{0,1}nR.

if we are an ordinary statistician [1], we might pick a rule like j=1n(pjr(sj))2. (this is actually almost the brier score)

second pass