- Scores closer to 1 mean you were very close.
- Scores closer to 0 mean you were far from the result.
How accuracy is calculated
When a pool resolves, Trepa computes your accuracy score in three main steps.1. Measuring errors
Trepa first measures your absolute error, the distance between your prediction and the outcome. Smaller error means you were closer to the truth.2. Finding the stake-weighted median error
Next, Trepa looks at the errors of everyone in the pool and finds the weighted median prediction error.- It sorts all participants by their error from smallest to largest.
- It tracks how much cumulative stake sits at each error level.
- It finds the error where half of the total stake lies on each side.

The weighted median baseline is invariant under splitting a stake into many mini stakes with the same prediction. Sybil leverage is thus limited to total stake mass, not account count.
3. Normalize your error and map it to a score
Trepa then normalizes your error relative to the median error.- A normalized error below 1 means you were closer than the typical participant.
- A normalized error above 1 means you were further away than the typical participant.

- A normalized error of 0 (perfect prediction) gets an accuracy score of 1.
- As normalized error increases, the score smoothly decreases toward 0.
- Because the curve is convex, small improvements when you are already close to the outcome can increase your score a lot.