pub trait ApplyTransforms<'a> {
// Required method
fn apply(
&self,
transforms: Transforms<'a>,
device: &Device,
) -> Result<Tensor>;
}Expand description
Application of transforms to the Self type.
pub trait ApplyTransforms<'a> {
// Required method
fn apply(
&self,
transforms: Transforms<'a>,
device: &Device,
) -> Result<Tensor>;
}Application of transforms to the Self type.