Skip to content

Commit

Permalink
readd docstring
Browse files Browse the repository at this point in the history
  • Loading branch information
matbesancon committed Nov 8, 2023
1 parent df8616c commit 5095aef
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions src/linesearch.jl
Original file line number Diff line number Diff line change
Expand Up @@ -462,6 +462,13 @@ function _upgrade_accuracy_adaptive(gradient, direction, storage, ::Val{false})
return (dot_dir, ndir2, storage.x)
end

"""
Modified adaptive line search test from:
> S. Pokutta "The Frank-Wolfe algorith: a short introduction" (2023), preprint
It replaces the original test implemented in the AdaptiveZerothOrder line search based on:
> Pedregosa, F., Negiar, G., Askari, A., and Jaggi, M. (2020). "Linearly convergent Frank–Wolfe with backtracking line-search", Proceedings of AISTATS.
"""
mutable struct Adaptive{T,TT} <: LineSearchMethod
eta::T
tau::TT
Expand Down

0 comments on commit 5095aef

Please sign in to comment.