jax.random.triangular#

jax.random.triangular(key, left, mode, right, shape=None, dtype=<class 'float'>)[源代码]#

采样具有给定形状和浮点数据类型的三角随机值。

这些值根据以下概率密度函数返回

\[\begin{split}f(x; a, b, c) = \frac{2}{c-a} \left\{ \begin{array}{ll} \frac{x-a}{b-a} & a \leq x \leq b \\ \frac{c-x}{c-b} & b \leq x \leq c \end{array} \right.\end{split}\]

在域\(a \leq x \leq c\)上。

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

  • left (RealArray) – 一个浮点数或与 shape 兼容广播的浮点数数组,表示分布的下限参数。

  • mode (RealArray) – 一个浮点数或与 shape 兼容广播的浮点数数组,表示分布的峰值参数,其值必须满足条件 left <= mode <= right

  • right (RealArray) – 一个浮点数或与 shape 兼容广播的浮点数数组,表示分布的上限参数,必须大于 left

  • shape (Shape | None | None) – 可选,一个非负整数元组,指定结果的形状。必须与 leftmoderight 兼容广播。默认值 (None) 生成一个与 left.shapemode.shaperight.shape 相等的结果形状。

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

返回值:

如果 shape 不是 None,则返回具有指定 dtype 和形状的随机数组,否则返回 left.shapemode.shaperight.shape

返回类型:

Array