Least mean squares filter explained
Least mean squares (LMS) algorithms are a class of adaptive filter used to mimic a desired filter by finding the filter coefficients that relate to producing the least mean square of the error signal (difference between the desired and the actual signal). It is a stochastic gradient descent method in that the filter is only adapted based on the error at the current time. It was invented in 1960 by Stanford University professor Bernard Widrow and his first Ph.D. student, Ted Hoff, based on their research in single-layer neural networks (ADALINE). Specifically, they used gradient descent to train ADALINE to recognize patterns, and called the algorithm "delta rule". They then applied the rule to filters, resulting in the LMS algorithm.
Problem formulation
The picture shows the various parts of the filter.
is the input signal, which is then transformed by an unknown filter
that we wish to match using
. The output from the unknown filter is
, which is then interfered with a noise signal
, producing
. Then the error signal
is computed, and it is fed back to the adaptive filter, to adjust its parameters in order to minimize the mean square of the error signal
.
Relationship to the Wiener filter
The realization of the causal Wiener filter looks a lot like the solution to the least squares estimate, except in the signal processing domain. The least squares solution for input matrix
and output vector
is
\boldsymbol{\hat\beta}=(XTX)-1XT\boldsymboly.
The FIR least mean squares filter is related to the Wiener filter, but minimizing the error criterion of the former does not rely on cross-correlations or auto-correlations. Its solution converges to the Wiener filter solution. Most linear adaptive filtering problems can be formulated using the block diagram above. That is, an unknown system
is to be identified and the adaptive filter attempts to adapt the filter
}(n) to make it as close as possible to
, while using only observable signals
,
and
; but
,
and
are not directly observable. Its solution is closely related to the
Wiener filter.
Definition of symbols
is the number of the current input sample
is the number of filter taps
(
Hermitian transpose or
conjugate transpose)
x(n)=\left[x(n),x(n-1),...,x(n-p+1)\right]T
h(n)=\left[h0(n),h1(n),...,hp-1(n)\right]T, h(n)\inCp
}(n) estimated filter; interpret as the estimation of the filter coefficients after samples
e(n)=d(n)-\hat{y}(n)=d(n)-\hat{h
}^H(n) \cdot \mathbf(n)
Idea
The basic idea behind LMS filter is to approach the optimum filter weights
, by updating the filter weights in a manner to converge to the optimum filter weight. This is based on the gradient descent algorithm. The algorithm starts by assuming small weights (zero in most cases) and, at each step, by finding the gradient of the mean square error, the weights are updated. That is, if the MSE-gradient is positive, it implies the error would keep increasing positively if the same weight is used for further iterations, which means we need to reduce the weights. In the same way, if the gradient is negative, we need to increase the weights. The weight update equation is
Wn+1=Wn-\mu\nabla\varepsilon[n],
where
represents the mean-square error and
is a convergence coefficient.
The negative sign shows that we go down the slope of the error,
to find the filter weights,
, which minimize the error.
The mean-square error as a function of filter weights is a quadratic function which means it has only one extremum, that minimizes the mean-square error, which is the optimal weight. The LMS thus, approaches towards this optimal weights by ascending/descending down the mean-square-error vs filter weight curve.
Derivation
The idea behind LMS filters is to use steepest descent to find filter weights
}(n) which minimize a
cost function. We start by defining the cost function as
C(n)=E\left\{|e(n)|2\right\}
where
is the error at the current sample
n and
denotes the
expected value.
This cost function (
) is the mean square error, and it is minimized by the LMS. This is where the LMS gets its name. Applying
steepest descent means to take the
partial derivatives with respect to the individual entries of the filter coefficient (weight) vector
C(n)=
E\left\{e(n)e*
| H} |
(n)\right\}=2E\left\{\nabla | |
| \hat{h |
(e(n))e*(n)\right\}
where
is the
gradient operator
(e(n))=
\left(d(n)-\hat{h
}^H \cdot \mathbf(n)\right)=-\mathbf(n)
\nablaC(n)=-2E\left\{x(n)e*(n)\right\}
Now,
is a vector which points towards the steepest ascent of the cost function. To find the minimum of the cost function we need to take a step in the opposite direction of
. To express that in mathematical terms
}(n+1)=\hat(n)-\frac \nabla C(n)=\hat(n)+\mu \, E\left\where
is the step size (adaptation constant). That means we have found a sequential update algorithm which minimizes the cost function. Unfortunately, this algorithm is not realizable until we know
E\left\{x(n)e*(n)\right\}
.
Generally, the expectation above is not computed. Instead, to run the LMS in an online (updating after each new sample is received) environment, we use an instantaneous estimate of that expectation. See below.
Simplifications
For most systems the expectation function
{E}\left\{x(n)e*(n)\right\}
must be approximated. This can be done with the following unbiased
estimator\hat{E}\left\{x(n)e*(n)\right\}=
x(n-i)e*(n-i)
where
indicates the number of samples we use for that estimate. The simplest case is
\hat{E}\left\{x(n)e*(n)\right\}=x(n)e*(n)
For that simple case the update algorithm follows as
}(n+1)=\hat(n)+\mu \mathbf(n) \, e^(n)Indeed, this constitutes the update algorithm for the LMS filter.
LMS algorithm summary
The LMS algorithm for a
th order filter can be summarized as
Parameters: |
filter order |
|
step size |
Initialisation: |
}(0)=\operatorname(p) |
Computation: | For
|
| x(n)=\left[x(n),x(n-1),...,x(n-p+1)\right]T
|
|
}^(n)\mathbf(n) |
|
}(n+1) = \hat(n)+\mu\,e^(n)\mathbf(n) | |
Convergence and stability in the mean
As the LMS algorithm does not use the exact values of the expectations, the weights would never reach the optimal weights in the absolute sense, but a convergence is possible in mean. That is, even though the weights may change by small amounts, it changes about the optimal weights. However, if the variance with which the weights change, is large, convergence in mean would be misleading. This problem may occur, if the value of step-size
is not chosen properly.
If
is chosen to be large, the amount with which the weights change depends heavily on the gradient estimate, and so the weights may change by a large value so that gradient which was negative at the first instant may now become positive. And at the second instant, the weight may change in the opposite direction by a large amount because of the negative gradient and would thus keep oscillating with a large variance about the optimal weights. On the other hand, if
is chosen to be too small, time to converge to the optimal weights will be too large.
Thus, an upper bound on
is needed which is given as
,
where
is the greatest eigenvalue of the
autocorrelation matrix
} = E\. If this condition is not fulfilled, the algorithm becomes unstable and
diverges.
Maximum convergence speed is achieved when
where
is the smallest eigenvalue of
}.Given that
is less than or equal to this optimum, the convergence speed is determined by
, with a larger value yielding faster convergence. This means that faster convergence can be achieved when
is close to
, that is, the maximum achievable convergence speed depends on the
eigenvalue spread of
}.
A white noise signal has autocorrelation matrix
}=\sigma^2 where
is the variance of the signal. In this case all eigenvalues are equal, and the eigenvalue spread is the minimum over all possible matrices.The common interpretation of this result is therefore that the LMS converges quickly for white input signals, and slowly for colored input signals, such as processes with low-pass or high-pass characteristics.
It is important to note that the above upperbound on
only enforces stability in the mean, but the coefficients of
can still grow infinitely large, i.e. divergence of the coefficients is still possible. A more practical bound is
where
}] denotes the
trace of
}. This bound guarantees that the coefficients of
do not diverge (in practice, the value of
should not be chosen close to this upper bound, since it is somewhat optimistic due to approximations and assumptions made in the derivation of the bound).
Normalized least mean squares filter (NLMS)
The main drawback of the "pure" LMS algorithm is that it is sensitive to the scaling of its input
. This makes it very hard (if not impossible) to choose a
learning rate
that guarantees stability of the algorithm (Haykin 2002). The
Normalised least mean squares filter (NLMS) is a variant of the LMS algorithm that solves this problem by normalising with the power of the input. The NLMS algorithm can be summarised as:
Parameters: |
filter order |
|
step size |
Initialization: |
}(0)=\operatorname(p) |
Computation: | For
|
| x(n)=\left[x(n),x(n-1),...,x(n-p+1)\right]T
|
|
}^(n)\mathbf(n) |
|
}(n+1) = \hat(n)+\frac | |
Optimal learning rate
It can be shown that if there is no interference (
), then the optimal learning rate for the NLMS algorithm is
and is independent of the input
and the real (unknown) impulse response
. In the general case with interference (
), the optimal learning rate is
\muopt=
| E\left[\left|y(n)-\hat{y |
(n)\right| |
2\right]}{E\left[|e(n)|2\right]}
The results above assume that the signals
and
are uncorrelated to each other, which is generally the case in practice.
Proof
Let the filter misalignment be defined as
}(n) \right|^2, we can derive the expected misalignment for the next sample as:
E\left[Λ(n+1)\right]=E\left[\left|\hat{h
}(n) + \frac - \mathbf(n) \right|^2 \right]
E\left[Λ(n+1)\right]=E\left[\left|\hat{h
}(n) + \frac - \mathbf(n) \right|^2 \right]
Let
}(n)-\mathbf(n) and
E\left[Λ(n+1)\right]=E\left[\left|\delta(n)-
| \mu\left(v(n)+r(n)\right)x(n) |
xH(n)x(n) |
\right|2\right]
E\left[Λ(n+1)\right]=E\left[\left(\delta(n)-
| \mu\left(v(n)+r(n)\right)x(n) |
xH(n)x(n) |
\right)H\left(\delta(n)-
| \mu\left(v(n)+r(n)\right)x(n) |
xH(n)x(n) |
\right)\right]
Assuming independence, we have:
E\left[Λ(n+1)\right]=Λ(n)+E\left[\left(
| \mu\left(v(n)+r(n)\right)x(n) |
xH(n)x(n) |
\right)H\left(
| \mu\left(v(n)+r(n)\right)x(n) |
xH(n)x(n) |
\right)\right]-2E\left[
\right]
E\left[Λ(n+1)\right]=Λ(n)+
| \mu2E\left[|e(n)|2\right] |
xH(n)x(n) |
-
| 2\muE\left[|r(n)|2\right] |
xH(n)x(n) |
The optimal learning rate is found at
| dE\left[Λ(n+1)\right] |
d\mu |
=0
, which leads to:
2\muE\left[|e(n)|2\right]-2E\left[|r(n)|2\right]=0
\mu=
| E\left[|r(n)|2\right] |
E\left[|e(n)|2\right] |
See also
References
- Monson H. Hayes: Statistical Digital Signal Processing and Modeling, Wiley, 1996,
- Simon Haykin: Adaptive Filter Theory, Prentice Hall, 2002,
- Simon S. Haykin, Bernard Widrow (Editor): Least-Mean-Square Adaptive Filters, Wiley, 2003,
- Bernard Widrow, Samuel D. Stearns: Adaptive Signal Processing, Prentice Hall, 1985,
- Weifeng Liu, Jose Principe and Simon Haykin: Kernel Adaptive Filtering: A Comprehensive Introduction, John Wiley, 2010,
- Paulo S.R. Diniz: Adaptive Filtering: Algorithms and Practical Implementation, Kluwer Academic Publishers, 1997,
External links