-
-
Notifications
You must be signed in to change notification settings - Fork 12
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
BUG: constant_data is missing from idata when sampling with nutpie #74
Comments
|
Might be because this information is not even passed to We should probably adopt from here: https://github.com/pymc-devs/mcbackend/blob/96e4248d1d1d1be8b73b28d702bb1a3012ef98f6/mcbackend/core.py#L265 These pieces are all already implemented in the McBackend code. For example a @aseyboldt @ferrine do I see it correctly that the solution here is to change this line to pass |
Describe the issue:
I recently encountered an issue when trying to add constant data to some of my models.
When sampling with
nuts_sampler="pymc"
,idata
contains a group denominated asconstant_data
where x and y from this toy example are stored. Unfortunately, when usingnutpie
, the constant data is nowhere to be found.Is this actually a bug or is there something wrong with my definitions? Or are
pm.ConstantData()
and such perhaps just not supported when using nutpie?Any help would be much appreciated.
Reproduceable code example:
Error message:
Output of print(idata):
PyMC version information:
PyMC v5.8.1 (pypi)
nutpie v0.9.1 (pypi)
PyTensor v2.16.2 (pypi)
Context for the issue:
No response
The text was updated successfully, but these errors were encountered: