Skip to content
#

anomalydetection

Here are 83 public repositories matching this topic...

cswiercz
cswiercz commented May 7, 2021

The current definition of SamplerResult is,

pub enum SamplerResult<T> {
    Ignored,
    Accepted(Option<WeightedSample<T>>),
}

This makes for some very verbose matching and value unpacking in Sampler::update(). Not only do we need to check the enum value but if it's an Accepted we also need to check if a WeightedSample is returned. The value of this Option communi

Improve this page

Add a description, image, and links to the anomalydetection topic page so that developers can more easily learn about it.

Curate this topic

Add this topic to your repo

To associate your repository with the anomalydetection topic, visit your repo's landing page and select "manage topics."

Learn more