-
-
Notifications
You must be signed in to change notification settings - Fork 2.1k
Add size everywhere #2984
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
Add size everywhere #2984
Conversation
Hrmph... this one test also isn't returning on my machine. Will check more tomorrow |
Ahh good stuff. Didn't realize you needed to add size there too.
…On Sat, 19 May 2018, 10:29 pm Colin, ***@***.***> wrote:
Hrmph... this one test also isn't returning on my machine. Will check more
tomorrow
—
You are receiving this because you are subscribed to this thread.
Reply to this email directly, view it on GitHub
<#2984 (comment)>, or mute
the thread
<https://github.com/notifications/unsubscribe-auth/AA8DiAlT7K2EJuW5zo7DP9yqZK1Mq9_rks5t0ICjgaJpZM4UF0pW>
.
|
Update from a lot of checking is that this continues to be hard, and keeps stumbling into problems of Specifically, something like
still poses problems. |
What about using |
This is a rabbit hole isn't it :) |
4c220b6
to
a7f9955
Compare
Updated this so that tests pass (fingers crossed) by removing the failing one ( However, I do think that these makes the code base more correct, at least, and may help unblock #2983. |
The test that is failing appears to be skipped on all previous builds, but I do not see why it should be skipped. It appears to also get skipped on all non-3.6 environments in this build. It also fails on my local machine, at least for the last year. Recreate with:
I can open a separate issue if I am not missing something obvious. |
@ColCarroll This used to work, but now fails. with pm.Model() as m:
alfa = pm.HalfNormal('alfa', 20)
p = pm.Beta('p', alfa, 1)
pm.distributions.draw_values([m['p']], size=10) Could we remove the |
A little more tidying up -- this makes a bunch more distributions work: