pub trait L1Norm {
type Output;
// Required method
fn l1_norm(&self) -> Self::Output;
}
Expand description
a trait for computing the L1 norm of a tensor or array
pub trait L1Norm {
type Output;
// Required method
fn l1_norm(&self) -> Self::Output;
}
a trait for computing the L1 norm of a tensor or array