From d67a2e40b3039830c68253e973d292257e00537a Mon Sep 17 00:00:00 2001 From: Martijn Visser Date: Sun, 1 Mar 2020 15:20:40 +0100 Subject: [PATCH] remove stray code block start from docstring --- src/optimise/optimisers.jl | 1 - 1 file changed, 1 deletion(-) diff --git a/src/optimise/optimisers.jl b/src/optimise/optimisers.jl index c8e00126..f853ac23 100644 --- a/src/optimise/optimisers.jl +++ b/src/optimise/optimisers.jl @@ -444,7 +444,6 @@ end InvDecay(γ) Applies inverse time decay to an optimiser, i.e., the effective step size at iteration `n` is `eta / (1 + γ * n)` where `eta` is the initial step size. The wrapped optimiser's step size is not modified. -``` ## Parameters - gamma (γ): Defaults to `0.001`