Estimatable

Trait Estimatable 

Source
pub trait Estimatable {
    // Required method
    fn prepare_for_estimation<F: Float>(&self) -> Array1<F>;
}
Expand description

Trait to prepare a struct for training or inference

Required Methods§

Source

fn prepare_for_estimation<F: Float>(&self) -> Array1<F>

Prepare for an estimator to train or make inference based on this data

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementations on Foreign Types§

Source§

impl<F1: Float> Estimatable for Array1<F1>

Implementors§