jax.random.weibull_min#
- jax.random.weibull_min(key, scale, concentration, shape=(), dtype=<class 'float'>)[源代码][源代码]#
从威布尔分布中抽取样本。
这些值根据概率密度函数分布:
\[f(x;\sigma,c) \propto x^{c - 1} \exp(-(x / \sigma)^c)\]在域 \(0 < x < \infty\) 上,其中 \(c > 0\) 是浓度参数,而 \(\sigma > 0\) 是尺度参数。
- 参数:
key (KeyArrayLike) – 一个 PRNG 键。
scale (RealArray) – 分布的尺度参数。
concentration (RealArray) – 分布的浓度参数。
shape (Shape) – 添加到参数 loc 和 scale 的广播形状。
dtype (DTypeLikeFloat) – 用于样本的类型。
- 返回:
样本的 jnp.array。
- 返回类型: