jax.random.weibull_min#

jax.random.weibull_min(key, scale, concentration, shape=(), dtype=<class 'float'>)[源代码]#

从 Weibull 分布中采样。

这些值根据以下概率密度函数分布

\[f(x;\sigma,c) \propto x^{c - 1} \exp(-(x / \sigma)^c)\]

在定义域 \(0 < x < \infty\) 上,其中 \(c > 0\) 是集中参数,\(\sigma > 0\) 是尺度参数。

参数:
  • key (ArrayLike) – 一个 PRNG 键。

  • scale (RealArray) – 分布的尺度参数。

  • concentration (RealArray) – 分布的集中参数。

  • shape (Shape) – 添加到参数 loc 和 scale 可广播形状的形状。

  • dtype (DTypeLikeFloat) – 用于样本的类型。

返回:

一个 jnp.array 类型的样本。

返回类型:

Array