jax.random.normal

内容

jax.random.normal#

jax.random.normal(key, shape=(), dtype=<class 'float'>)[source]#

使用给定形状和浮点类型采样标准正态随机值。

返回值根据概率密度函数

\[f(x) = \frac{1}{\sqrt{2\pi}}e^{-x^2/2}\]

在域 \(-\infty < x < \infty\)

参数:
  • key (KeyArrayLike) – 用作随机密钥的 PRNG 密钥。

  • shape (Shape) – 可选,表示结果形状的非负整数元组。默认值 ()。

  • dtype (DTypeLikeFloat) – 可选,返回值的浮点类型(如果 jax_enable_x64 为真,则默认值 float64,否则为 float32)。

返回值:

具有指定形状和类型的随机数组。

返回值类型:

Array