pub type TranscodeValidationMetrics = ErrorMetrics;Expand description
Error metrics from an optional validation oracle.
Aliased Type§
pub struct TranscodeValidationMetrics {
pub total: usize,
pub exact_matches: usize,
pub max_abs_error: i64,
pub absolute_error_histogram: BTreeMap<i64, usize>,
}Fields§
§total: usizeNumber of compared coefficients.
exact_matches: usizeNumber of coefficients with exact equality.
max_abs_error: i64Maximum absolute coefficient error.
absolute_error_histogram: BTreeMap<i64, usize>Absolute-error histogram keyed by LSB distance.