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§
Sourcefn prepare_for_estimation<F: Float>(&self) -> Array1<F>
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.