pub trait StackingEstimator: Send { // Required methods fn fit(&mut self, x: &Tensor, y: &Tensor); fn predict(&self, x: &Tensor) -> Tensor; }