Last active
November 1, 2021 10:46
-
-
Save AustinRochford/4b8a163b66a11cdcbc430797b9b664fe to your computer and use it in GitHub Desktop.
Bayesian Parametric Survival Analysis with PyMC3
@peadarcoylezopa what PyMC3 and Theano versions are you using?
Hey Austin - the bug turned out to be fixed by a newer version of theano.
Glad to hear it!
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Hey Austin. I run into a bug on this around the \nu cens - TypeError: TensorType does not support boolean mask for indexing such as tensor[x==0]. Instead you can use non_zeros() such as tensor[(x == 0).nonzeros()].
Any suggestions. I tried doing n[(cens).nonzero()] but it leads to problems with alignment further on.