Documentation
README
Score / rank covariance estimates
from precise import all_assessors, assessor_from_name
for A in all_assessors():
s = A().score(cov, X_test=X_test, true_cov=Sigma_true) # higher = better
covis the estimate to judge;X_testis held-out data (rows = observations);true_covis the population covariance (only available in simulation).- Each assessor exposes
needs_dataandneeds_truth; pass what it needs. Truth-free assessors work on real data, truth-requiring ones (e.g.FrobeniusToTruth) only in simulation. - All assessors follow higher = better, so you can rank or argmax directly.
The one rule that matters in high dimensions
This is the opening of the README. Read the full README on GitHub.