MvNormalCalibration.jl

Author RomeoV
Popularity
0 Stars
Updated Last
2 Months Ago
Started In
May 2024

MvNormalCalibration.jl

Docs codecov Aqua JET

This package implements a simple way to measure calibration and sharpness for multivariate normal distributions. In particular, it exports two functions with (roughly) signatures

  • computecalibration( preds::Vector{<:MvNormal}, truevals::Vector{Vector{Float64}} )
  • sharpness( pred::MvNormal )

computecalibration(...) iterates over (prediction, trueval) tuples and measures whether trueval falls into a (central) prediction set for a series of coverage levels. In particular, if the predictions are well calibrated, the following should hold:

(; pvals, calibrationvals) = computecalibration(preds, truevals)
@test pvals  calibrationvals

sharpness(...) computes the (hyper-)volume of one standard deviation of a multivariate normal.

Used By Packages

No packages found.