We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
PyMC tests are failing: pymc-devs/pymc#7740
Reproducible example:
import pytensor.tensor as pt p = pt.eye(3) rv = pt.random.multinomial(n=5, p=p) rv.eval(mode="JAX") # Array([[ 5., nan, nan], # [ 0., 5., 0.], # [ 0., 0., 5.]], dtype=float64)
I guess it could be a problem with binomial with p=0?
CC @educhesne
The text was updated successfully, but these errors were encountered:
I am very sorry about this... I think there is a division by zero happening here
Sorry, something went wrong.
Do you know why it was not caught by the tests in the PR ?
I guess we were not testing edge cases
Successfully merging a pull request may close this issue.
Description
PyMC tests are failing: pymc-devs/pymc#7740
Reproducible example:
I guess it could be a problem with binomial with p=0?
CC @educhesne
The text was updated successfully, but these errors were encountered: