We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
DiscreteUniform
Right now, models like the following fail:
with MarginalModel() as m: mu = pm.DiscreteUniform("mu", lower=[0,10,20], upper=40) y = pm.Normal("y", mu=mu, sigma=1.0) m.marginalize([mu])
Since lower here takes all constant values, it should be possible to support this
lower