-
-
Notifications
You must be signed in to change notification settings - Fork 2k
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
Fixing scalar shape handling: treat (1,) as vectors #4214
Conversation
+ by using more pytest.mark.parametrize, the overall number of overall tests increases, but the result should be easier to diagnose + an informative assert error message was added
Thanks for taking the initiative @michaelosthege ! |
I think I ran into the same problem as @StephenHogg in #4211 EDIT: I removed the traceback, because it's now documented in #4219 I'm on a quite recent Theano-PyMC master branch (4249a0). (Maybe you are too, @StephenHogg?) @brandonwillard assuming that this is indeed due to a change in Theano-PyMC, do you know about this issue already? Any hints? |
Codecov Report
@@ Coverage Diff @@
## master #4214 +/- ##
==========================================
+ Coverage 87.95% 87.97% +0.02%
==========================================
Files 88 88
Lines 14499 14483 -16
==========================================
- Hits 12752 12741 -11
+ Misses 1747 1742 -5
|
As far as theano-pymc goes, here's what
The error looks the same, yes. |
The key line is here: pymc3\model.py:1800: in __init__
self.tag.test_value = theano.compile.view_op(data).tag.test_value We recently introduced a change to Theano's test value handling that validates the test values up front. The fix requires that the PyMC3-assigned test values be cast to the appropriate types (e.g. |
b8849d2
to
2e38d89
Compare
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.
All changes here look fine.
However, i know that the MixtureSameFamily
also does a check for size=1
that should be removed here. I imagine that other "meta distributions" like the Mixture
and DensityDist
do the something similar. Could you check those too?
@lucianopaz thanks. Only in |
Co-authored-by: Thomas Wiecki <thomas.wiecki@gmail.com>
Thanks! |
can I work on this? |
Did you mean this: #3896 |
Breaking Changes
()
is the only scalar shape.(1,)
will become vector of length 1New Shape Examples
Normal("n", shape=None)
is the same as the defaultNormal("n")
. Here it is up to the distribution (most will default to()
)shape=()
explicitly specifies scalar shapeshape=0
orshape=(0,)
is up for discussion (see below)shape=1
is the same asshape=(1,)
is a length 1 vectorOpen ToDos
hundreds ofa few tests. They must be fixed.VelueError
when a user passesshape=(0,)
/shape=0
to a distributionsize=(0,)
/size=0
to.random()
remains allowed - because numpy also allows it on the random number generatorRandomWalk
distributions. While the tests cover shapes, they don't necessarily catch problems like GaussianRandomWalk prior predictive is broken #3962 (they look fine, but most don't have a.random()
implementation. See .random() methods missing from some timeseries distributions #4337 )re-running relevant notebooks (oh dear!)Let's do this on a separate PR