RandnLike ========= Returns a tensor with the same size as input that is filled with random numbers from a normal distribution. **Abstract Signature:** ``RandnLike(input: Tensor)`` .. raw:: html

PyTorch

API: torch.randn_like
Strategy: Direct Mapping

JAX (Core)

API: jax.random.normal
Strategy: Plugin (inject_prng)

NumPy

API: np.random.standard_normal
Strategy: Macro 'np.random.standard_normal({input}.shape)'

Keras

API: keras.random.normal
Strategy: Macro 'keras.random.normal({input}.shape)'

TensorFlow

API: tf.random.normal
Strategy: Macro 'tf.random.normal({input}.shape)'

Apple MLX

API: mlx.core.random.normal
Strategy: Macro 'mlx.core.random.normal({input}.shape)'