-
-
Notifications
You must be signed in to change notification settings - Fork 152
New issue
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
Parameterization of WeibullRV missing scale? #1141
Comments
Did you open an issue in PyMC? |
Here is my draft PR: pymc-devs/pymc#6059. Sorry if I was unclear, but the issue is not in the current version of PyMC. It appeared when I tried to update aesara's version to 2.8.2. |
Thanks for linking the relevant PR. The idea behind the change in the |
Thank you, that answers my question. In this case, I will close this issue as I think that this should probably be treated on the PyMC side. |
It looks like the parametrization change was propagated to AePPL as well, so this should not be an issue. |
Description of your problem or feature request
I am trying to upgrade
PyMC
toaesara=2.8.2
, and some of the tests failing are related toWeibullRV
.I think that it might have to do with commit fcd1c4c which imposes the prototype of
WeibullRV.__call__(self, shape, size, **kwargs)
. However, the Weibull distribution is usually described by two parameters: its scale and its shape. The scale is missing from the function prototype, which might explain the errors onPyMC
's side.cc @rlouf because I think that you are the author of this commit
Please provide a minimal, self-contained, and reproducible example.
Please provide the full traceback of any errors.
Please provide any additional information below.
Versions and main components
python -c "import aesara; print(aesara.config)"
)The text was updated successfully, but these errors were encountered: