tfp.stats.brier_score
bookmark_borderbookmark
Stay organized with collections
Save and categorize content based on your preferences.
Compute Brier score for a probabilistic prediction.
tfp.stats.brier_score(
labels, logits, name=None
)
The [Brier score][1] is a loss function for probabilistic predictions over a
number of discrete outcomes. For a probability vector p
and a realized
outcome k
the Brier score is sum_i p[i]*p[i] - 2*p[k]
. Smaller values are
better in terms of prediction quality. The Brier score can be negative.
Compared to the cross entropy (aka logarithmic scoring rule) the Brier score
does not strongly penalize events which are deemed unlikely but do occur,
see [2]. The Brier score is a strictly proper scoring rule and therefore
yields consistent probabilistic predictions.
References
[1]: G.W. Brier.
Verification of forecasts expressed in terms of probability.
Monthley Weather Review, 1950.
[2]: Tilmann Gneiting, Adrian E. Raftery.
Strictly Proper Scoring Rules, Prediction, and Estimation.
Journal of the American Statistical Association, Vol. 102, 2007.
https://www.stat.washington.edu/raftery/Research/PDF/Gneiting2007jasa.pdf
Args |
labels
|
Tensor, (N1, ..., Nk), with tf.int32 or tf.int64 elements containing
ground truth class labels in the range [0, num_classes].
|
logits
|
Tensor, (N1, ..., Nk, num_classes), with logits for each example.
|
name
|
Python str name prefixed to Ops created by this function.
|
Returns |
brier_score
|
Tensor, (N1, ..., Nk), containint elementwise Brier scores;
caller should reduce_mean() over examples in a dataset.
|
Except as otherwise noted, the content of this page is licensed under the Creative Commons Attribution 4.0 License, and code samples are licensed under the Apache 2.0 License. For details, see the Google Developers Site Policies. Java is a registered trademark of Oracle and/or its affiliates.
Last updated 2023-11-21 UTC.
[[["Easy to understand","easyToUnderstand","thumb-up"],["Solved my problem","solvedMyProblem","thumb-up"],["Other","otherUp","thumb-up"]],[["Missing the information I need","missingTheInformationINeed","thumb-down"],["Too complicated / too many steps","tooComplicatedTooManySteps","thumb-down"],["Out of date","outOfDate","thumb-down"],["Samples / code issue","samplesCodeIssue","thumb-down"],["Other","otherDown","thumb-down"]],["Last updated 2023-11-21 UTC."],[],[]]