We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5f85a5c commit cd53a35Copy full SHA for cd53a35
src/AdvancedHMC.jl
@@ -24,7 +24,7 @@ import StatsBase: sample
24
const DEFAULT_FLOAT_TYPE = typeof(float(0))
25
26
include("utilities.jl")
27
-
+export PolynomialStepsize
28
# Notations
29
# ℓπ: log density of the target distribution
30
# θ: position variables / model parameters
src/utilities.jl
@@ -123,7 +123,7 @@ Create a polynomially decaying stepsize function.
123
124
At iteration `t`, the step size is
125
```math
126
-a (b + t)^{-γ}.
+a / (b + t)^{-γ}.
127
```
128
"""
129
function PolynomialStepsize(a::T, b::T, γ::T) where {T<:Real}
0 commit comments