exponential component (current update)

Recall that given the time series of the miner's predictions

(pt) we are scoring the miner at settlement through exponentially decreasing weights
(wt)
:

mk=โˆ‘jwj,Dร—S(pj,k,oE)โˆ‘jwj,D

where

S is currently the Brier scoring rule.

Right now we are applying the following transformation to

mk:

Bk=mkโˆ’min(mi)max(mi)โˆ’min(mi)

and the score is a linear combination of

Bk and of
mk
.

Instead now we will directly pass

mk into an exponential:

Bk=expโก(20โˆ—mk)
where
20
is a parameter that might be adjusted later.

logarithmic scoring (work in progress)

The problem with the Brier score is that it is not punishing mistaken confidence e.g sending 0 while the outcome is 1. It is always positive so the worst outcome for a miner is always zero.

Instead one can score a miner who predicted that the probability that a given event will happen is

p:

  • 1+logโก(p)
    if the event occured
  • 1+logโก(1โˆ’p)
    if not

The logarithm is equal minus infinity near zero so we would add a

max(โˆ’,a) where
a
is a negative number:

  • max(1+logโก(p),โˆ’0.5)
    if the event occured
  • max(1+logโก(1โˆ’p),โˆ’0.5)
    if not