> For the complete documentation index, see [llms.txt](https://gitbook-docs.coinmetrics.io/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://gitbook-docs.coinmetrics.io/bittensor/precog-methodology/point-forecast-evaluation.md).

# Point Forecast Evaluation

## Single-Epoch Evaluation

Single-epoch refers to the forecast issued at a single prediction time ($$p\_i$$), evaluated against the observed Coin Metrics Reference Rate ($$p\_{CM}$$) 1-hour in the future.

At each evaluation time (ie. each epoch) the validators calculate the Absolute Error ( $$e\_i$$) of the prediction compared to the observed price:

$$e\_i = |p\_i-p\_{CM}| / p\_{CM}$$

### Ranking

The miner forecasts within each epoch are ranked from $$r\_i \in {0, ..., N-1}$$ with rank 0 being the best Miner with the smallest error and (N-1) being the rank of the worst Miner with largest error.

### Share per Rank

Each miner receives a "share" or weight of that epoch's reward depending on their rank. The share is 1.0 for the best miner and is exponentially decreasing for worse ranks. In the simplest case, without ties, each miners point forecast share is calculated as: $$s\_i =(0.9)^{r\_i}$$. This explained in more detail in the section on calculating final share.


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter, and the optional `goal` query parameter:

```
GET https://gitbook-docs.coinmetrics.io/bittensor/precog-methodology/point-forecast-evaluation.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
