jax.random.triangular

内容

jax.random.triangular#

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

使用给定的形状和浮点类型采样三角形随机值。

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

\[\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 (KeyArrayLike) – 用作随机密钥的 PRNG 密钥。

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

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

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

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

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

返回:

一个随机数组,具有指定的 dtype 和形状,如果 shape 不为 None,则形状由 shape 给出,否则由 left.shapemode.shaperight.shape 给出。

返回类型:

数组