quietset 0.7.0

Filter datasets by label stability across evaluators, budgets, seeds, and models
Documentation

quietset — filter datasets by label stability.

Quick start

use quietset::{Observation, ScoreConfig, score_all};

let obs = vec![
    Observation { sample_id: "a".into(), label: Some("win".into()), score: Some(0.9), ..Default::default() },
    Observation { sample_id: "a".into(), label: Some("win".into()), score: Some(0.88), ..Default::default() },
];
let reports = score_all(obs, &ScoreConfig::default());
assert_eq!(reports[0].decision, quietset::Decision::Keep);