Warning

This page was created from a pull request.

jax.random.weibull_minΒΆ

jax.random.weibull_min(key, scale, concentration, shape=(), dtype=<class 'numpy.float64'>)[source]ΒΆ

Sample from a Weibull distribution.

The scipy counterpart is scipy.stats.weibull_min.

Parameters
  • key – a PRNGKey key.

  • scale – The scale parameter of the distribution.

  • concentration – The concentration parameter of the distribution.

  • shape – The shape added to the parameters loc and scale broadcastable shape.

  • dtype – The type used for samples.

Returns

A jnp.array of samples.