Source code for bayesflow.scores.median_score
from keras.saving import register_keras_serializable as serializable
from .normed_difference_score import NormedDifferenceScore
[docs]
@serializable(package="bayesflow.scores")
class MedianScore(NormedDifferenceScore):
r""":math:`S(\hat \theta, \theta) = | \hat \theta - \theta |`
Scores a predicted median with the absolute error score.
"""
def __init__(self, **kwargs):
super().__init__(k=1, **kwargs)
self.config = {}