-
Notifications
You must be signed in to change notification settings - Fork 23
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
ft: significantly increased brier test speed
- Loading branch information
Showing
1 changed file
with
36 additions
and
44 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
5fb55ca
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Hi Pablo, nice work implementing the Brier score. I only have one doubt with it, why we use poisson.cdf to define the probabilities? I foresee two problems with this, 1. the usual problem with models that do not assume a Poisson distribution in each bin, and 2. if we plan to use this function also to score the magnitude distribution then using Poisson to calculate probabilities is not correct and we would need to implement a different function for that task. My suggestion would be to create a function that takes in input the probabilities (however calculated) and the observations and just calculate the Brier score, then we can apply it to different cases just creating the probability vector differently. This could be also useful to study the difference in the results depending on how we calculate these probabilities. This is just a thought, I am keen to discuss further (sorry to have missed last meeting, probably you already discussed this there).