pub trait Transform: Send + Sync { // Required method fn apply(&self, tensor: &Tensor) -> Tensor; }
Trait for data transforms