Kalpana Kalpana (Editor)

Backtracking line search

Updated on
Edit
Like
Comment
Share on FacebookTweet on TwitterShare on LinkedInShare on Reddit

In (unconstrained) minimization, a backtracking line search, a search scheme based on the Armijo–Goldstein condition, is a line search method to determine the maximum amount to move along a given search direction. It involves starting with a relatively large estimate of the step size for movement along the search direction, and iteratively shrinking the step size (i.e., "backtracking") until a decrease of the objective function is observed that adequately corresponds to the decrease that is expected, based on the local gradient of the objective function.

Contents

Motivation

Given a starting position x and a search direction p , the task of a line search is to determine a step size α that adequately reduces the objective function f : R n R (assumed smooth), i.e., to find a value of α that reduces f ( x + α p ) relative to f ( x ) . However, it is usually undesirable to devote substantial resources to finding a value of α to precisely minimize f . This is because the computing resources needed to find a more precise minimum along one particular direction could instead be employed to identify a better search direction. Once an improved starting point has been identified by the line search, another subsequent line search will ordinarily be performed in a new direction. The goal, then, is just to identify a value of α that provides a reasonable amount of improvement in the objective function, rather than to find the actual minimizing value of α .

The backtracking line search starts with a large estimate of α and iteratively shrinks it. The shrinking continues until a value is found that is small enough to provide a decrease in the objective function that adequately matches the decrease that is expected to be achieved, based on the local function gradient f ( x ) .

Define the local slope of the function of α along the search direction p as m = p T f ( x ) . It is assumed that p is a unit vector in a direction in which some local decrease is possible, i.e., it is assumed that m < 0 .

Based on a selected control parameter c ( 0 , 1 ) , the Armijo–Goldstein condition tests whether a step-wise movement from a current position x to a modified position x + α p achieves an adequately corresponding decrease in the objective function. The condition is fulfilled if f ( x + α p ) f ( x ) + α c m .

This condition, when used appropriately as part of a line search, can ensure that the step size is not excessively large. However, this condition is not sufficient on its own to ensure that the step size is nearly optimal, since any value of α that is sufficiently small will satisfy the condition.

Thus, the backtracking line search strategy starts with a relatively large step size, and repeatedly shrinks it by a factor τ ( 0 , 1 ) until the Armijo–Goldstein condition is fulfilled.

The search will terminate after a finite number of steps for any positive values of c and τ that are less than 1. For example, Armijo used 12 for both c and τ in a paper he published in 1966.

Algorithm

Starting with a maximum candidate step size value α 0 > 0 , using search control parameters τ ( 0 , 1 ) and c ( 0 , 1 ) , the backtracking line search algorithm can be expressed as follows:

  1. Set t = c m and iteration counter j = 0 .
  2. Until the condition is satisfied that f ( x ) f ( x + α j p ) α j t , repeatedly increment j and set α j = τ α j 1 .
  3. Return α j as the solution.

In other words, reduce α 0 by a factor of τ in each iteration until the Armijo–Goldstein condition is fulfilled.

References

Backtracking line search Wikipedia