Belinfante–Rosenfeld stress–energy tensor

From formulasearchengine
Revision as of 15:50, 25 January 2014 by en>Rjwilmsi (Journal cites, added 1 DOI using AWB (9887))
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

Natural evolution strategies (NES) are a family of numerical optimization algorithms for black-box problems. Similar in spirit to evolution strategies, they iteratively update the (continuous) parameters of a search distribution by following the natural gradient towards higher expected fitness.

Method

The general procedure is as follows: the parameterized search distribution is used to produce a batch of search points, and the fitness function is evaluated at each such point. The distribution’s parameters (which include strategy parameters) allow the algorithm to adaptively capture the (local) structure of the fitness function. For example, in the case of a Gaussian distribution, this comprises the mean and the covariance matrix. From the samples, NES estimates a search gradient on the parameters towards higher expected fitness. NES then performs a gradient ascent step along the natural gradient, a second order method which, unlike the plain gradient, renormalizes the update w.r.t. uncertainty. This step is crucial, since it prevents oscillations, premature convergence, and undesired effects stemming from a given parameterization. The entire process reiterates until a stopping criterion is met.

All members of the NES family operate based on the same principles. They differ in the type of probability distribution and the gradient approximation method used. Different search spaces require different search distributions; for example, in low dimensionality it can be highly beneficial to model the full covariance matrix. In high dimensions, on the other hand, a more scalable alternative is to limit the covariance to the diagonal only. In addition, highly multi-modal search spaces may benefit from more heavy-tailed distributions (such as Cauchy, as opposed to the Gaussian). A last distinction arises between distributions where we can analytically compute the natural gradient, and more general distributions where we need to estimate it from samples.

Search gradients

Let θ denote the parameters of the search distribution π(x|θ) and f(x) the fitness function evaluated at x. NES then pursues the objective of maximizing the expected fitness under the search distribution

J(θ)=Eθ[f(x)]=f(x)π(x|θ)dx

through gradient ascent. The gradient can be rewritten as

θJ(θ)=θf(x)π(x|θ)dx
=f(x)θπ(x|θ)dx
=f(x)θπ(x|θ)π(x|θ)π(x|θ)dx
=[f(x)θlogπ(x|θ)]π(x|θ)dx
=Eθ[f(x)θlogπ(x|θ)]

that is, the expected value of f(x) times the log-derivatives at x. In practice, it is possible to use the Monte Carlo approximation based on a finite number of λ samples

θJ(θ)1λk=1λf(xk)θlogπ(xk|θ).

Finally, the parameters of the search distribution can be updated iteratively

θθ+ηθJ(θ)

Natural gradient ascent

Instead of using the plain stochastic gradient for updates, NES follows the natural gradient, which has been shown to possess numerous advantages over the plain (vanilla) gradient, e.g.:

  • the gradient direction is independent of the parameterization of the search distribution
  • the updates magnitudes are automatically adjusted based on uncertainty, in turn speeding convergence on plateaus and ridges.

The NES update is therefore

θθ+ηF1θJ(θ),

where F is the Fisher information matrix. The Fisher matrix can sometimes be computed exactly, otherwise it is estimated from samples, reusing the log-derivatives θlogπ(x|θ).

Fitness shaping

NES utilizes rank-based fitness shaping in order to render the algorithm more robust, and invariant under monotonically increasing transformations of the fitness function. For this purpose, the fitness of the population is transformed into a set of utility values u1uλ. Let xi denote the ith best individual. Replacing fitness with utility, the gradient estimate becomes

θJ(θ)=k=1λukθlogπ(xk|θ).

The choice of utility function is a free parameter of the algorithm.

Pseudocode

input: f,θinit

1  repeat
   
2     for  k=1λ do                                              // λ is the population size
       
3         draw sample xkπ(|θ)
       
4         evaluate fitness f(xk)
       
5         calculate log-derivatives θlogπ(xk|θ)
       
6     end
   
7     assign the utilities uk                                          // based on rank
   
8     estimate the gradient θJ1λk=1λukθlogπ(xk|θ)
   
9     estimate F1λk=1λθlogπ(xk|θ)θlogπ(xk|θ)           // or compute it exactly 
   
10    update parameters θθ+ηF1θJ                        // η is the learning rate

11 until stopping criterion is met

See also

Bibliography

External links