pub fn kaiming_normal( shape: Vec<usize>, fan_in: usize, seed: u64, ) -> Result<Tensor, ModelError>
Kaiming (He) normal initialization.
Fills with values from N(0, std) where std = sqrt(2 / fan_in).