-
Notifications
You must be signed in to change notification settings - Fork 100
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
Implementation of inverse trigamma #415
base: master
Are you sure you want to change the base?
Changes from all commits
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 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
|
@@ -398,6 +398,49 @@ function _invdigamma(y::Float64) | |||||||||||||||||||||||||||||||||||||||||||||||||||||||
return x_new | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||
end | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||
""" | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||
invtrigamma(x) | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Compute the inverse [`trigamma`](@ref) function of `x`. | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||
""" | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||
invtrigamma(y::Number) = _invtrigamma(float(y)) | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||
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.
Suggested change
It's kind of breaking my brain that what we're calling |
||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||
function _invtrigamma(y::Float64) | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||
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.
Suggested change
(See above) |
||||||||||||||||||||||||||||||||||||||||||||||||||||||||
# Implementation of Newton algorithm described in | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||
# "Linear Models and Empirical Bayes Methods for Assessing | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||
# Differential Expression in Microarray Experiments" | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||
# (Appendix "Inversion of Trigamma Function") | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||
# by Gordon K. Smyth, 2004 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||
if y <= 0 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||
throw(DomainError(y, "Only positive `y` supported.")) | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||
end | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||
if y > 1e7 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||
return inv(sqrt(y)) | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||
elseif y < 1e-6 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||
return inv(y) | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||
end | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Comment on lines
+414
to
+422
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.
Suggested change
This brings the error message more in line with the text used in other |
||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||
x_old = inv(y) + 0.5 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||
x_new = x_old | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||
# Newton iteration | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||
δ = Inf | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||
iteration = 0 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||
while δ > 1e-8 && iteration <= 25 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||
iteration += 1 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||
f_x_old = trigamma(x_old) | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||
δx = f_x_old*(1-f_x_old/y) / polygamma(2, x_old) | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||
x_new = x_old + δx | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||
δ = - δx / x_new | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||
x_old = x_new | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||
end | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||
return x_new | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Comment on lines
+424
to
+439
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.
Suggested change
AFAICT this is equivalent and more directly maps to the paper, as it avoids introducing a second step size variable. You can also avoid dividing by the input at every iteration by inverting once then multiplying by the inverse. I assume the number of iterations was chosen to match |
||||||||||||||||||||||||||||||||||||||||||||||||||||||||
end | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Comment on lines
+441
to
+442
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.
Suggested change
Just some excess space |
||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||
""" | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||
zeta(s) | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
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.
The line break is for consistency with other docstrings. I realize the text is modified from that of
invdigamma
but in this case I think it's worth noting the restriction on the domain ofx
. The added line is just for some extra clarity.