Closed
Description
Describe the issue:
The generation of random draws from a Weibull distribution is returning the same values when the input is constant along some axis. This does not happen with other distributions such as the Gamma. See the example below.
Reproduceable code example:
import numpy as np
import scipy.special as sp
import pymc as pm
rng = np.random.default_rng(123)
# Simulate mean from an only-intercept model. 2 chains, 100 draws, 5 observations.
# So 'mu' is the same for all the observations (because it's intercept-only)
mu_draws = np.abs(150 + np.dstack([rng.normal(size=(2, 100, 1))] * 5))
# Simulate some alpha values
alpha_draws = np.abs(rng.normal(size=(2, 100, 1)))
# With 'mu' and 'alpha' get 'beta', which is what pm.Weibull needs
beta_draws = mu_draws / sp.gamma(1 + 1 / alpha_draws)
# See the draws, for a given chain and draw, they look all the same!
weibull_draws = pm.draw(pm.Weibull.dist(alpha=alpha_draws, beta=beta_draws))
weibull_draws
print((weibull_draws == weibull_draws[:, :, 0][..., None]).all())
# True --> they're in fact all the same
You can see this is not the case for the gamma distribution
gamma_draws = pm.draw(pm.Gamma.dist(alpha=alpha_draws, beta=beta_draws))
(gamma_draws == gamma_draws[:, :, 0][..., None]).all() # False
Error message:
No response
PyMC version information:
5.11.0
Context for the issue:
Someone reported this in Bambi after they saw a warning with az.plot_ppc()
bambinos/bambi#788