Last active
January 26, 2023 17:16
-
-
Save ricardoV94/1cbc915b87e58dd3206d4f3526cdf593 to your computer and use it in GitHub Desktop.
I am not getting the right results with your implementation @ColtAllen. I added it to the newest gist. I assumed r_s_x = r * s * x
as that was missing
I added an implementation of the first function with PyTensor and it gets the right results: ref1_pytensor
I am not getting the right results with your implementation @ColtAllen. I added it to the newest gist. I assumed
r_s_x = r * s * x
as that was missing
No; it's r+s+x; sorry that it wasn't inside of the function in the notebook I used.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I also did my own implementation of the refactored likelihood expression with
scipy
andnumpy
functions, and the results match that of thelifetimes
likelihood:Something is amiss with the
pytensor
functions we're using. Does the newhyp2f1
op perhaps require a second look?