Sample from a Gumbel distribution with location 0 and scale 1.
Uses inverse transform sampling: x = -log(-log(u)) where u ~ Uniform(0, 1).
x = -log(-log(u))
Sample from a Gumbel distribution with location 0 and scale 1.
Uses inverse transform sampling:
x = -log(-log(u))where u ~ Uniform(0, 1).