-
-
Notifications
You must be signed in to change notification settings - Fork 2.1k
Fix obs broadcast mismatch #4700
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
Changes from all commits
a451013
d9738e2
c528fde
1716082
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -1116,8 +1116,6 @@ def register_rv(self, rv_var, name, data=None, total_size=None, dims=None, trans | |
): | ||
raise TypeError("Observed data cannot consist of symbolic variables.") | ||
|
||
data = pandas_to_array(data) | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Won't this cause problems if a There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. One of the first things in |
||
|
||
# `rv_var` is potentially a new variable (e.g. the original | ||
# variable could have its size changed to match the data, or be a | ||
# new graph that accounts for missing data) | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Should we also link to the issue here?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It's discoverable through the commits.
But on #4696 we'll make a few more robustness changes to
change_rv_size
. I can link the issue when rebasing thereintro_shape
branch.