Module fbleau::estimates[][src]

This module implements Bayes risk estimates, and heuristics for evaluating convergence.

Re-exports

pub use self::knn::KNNEstimator;
pub use self::nn_bound::NNBoundEstimator;
pub use self::frequentist::FrequentistEstimator;
pub use self::convergence::ForwardChecker;
pub use self::knn_utils::*;

Modules

convergence

This module provides tools for verifying whether an estimate has converged.

frequentist

Frequentist Bayes risks estimate for discrete secret and output space.

knn

Fast k-NN error estimates for discrete and continuous output space.

knn_utils
nn_bound

An estimator returning the bound based on the NN classifier.

Enums

Estimate

Estimators that F-BLEAU currently provides.

Traits

BayesEstimator

Every estimator should implement this trait.