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