Gumbel in PyMC3 is which gumbel from scipy

Gumbel in PyMC3 corresponds to which gumbel distribution from scipy stats library ?

scipy.stats.gumbel_l

A left-skewed Gumbel continuous random variable.

Or

scipy.stats.gumbel_r

A right-skewed Gumbel continuous random variable.

best regards

The pymc3 implementation corresponds to scipy gumbel_r.

$f(x \mid \mu, \beta) = \frac{1}{\beta}e^{-(z + e^{-z})}$

You can compare the docs here:

1 Like