In
computer science
Computer science is the study of computation, automation, and information. Computer science spans theoretical disciplines (such as algorithms, theory of computation, information theory, and automation) to practical disciplines (includin ...
, online machine learning is a method of
machine learning
Machine learning (ML) is a field of inquiry devoted to understanding and building methods that 'learn', that is, methods that leverage data to improve performance on some set of tasks. It is seen as a part of artificial intelligence.
Machine ...
in which data becomes available in a sequential order and is used to update the best predictor for future data at each step, as opposed to batch learning techniques which generate the best predictor by learning on the entire training data set at once. Online learning is a common technique used in areas of machine learning where it is computationally infeasible to train over the entire dataset, requiring the need of
out-of-core algorithms. It is also used in situations where it is necessary for the algorithm to dynamically adapt to new patterns in the data, or when the data itself is generated as a function of time, e.g.,
stock price prediction.
Online learning algorithms may be prone to
catastrophic interference, a problem that can be addressed by
incremental learning approaches.
Introduction
In the setting of
supervised learning
Supervised learning (SL) is a machine learning paradigm for problems where the available data consists of labelled examples, meaning that each data point contains features (covariates) and an associated label. The goal of supervised learning alg ...
, a function of
is to be learned, where
is thought of as a space of inputs and
as a space of outputs, that predicts well on instances that are drawn from a
joint probability distribution
Given two random variables that are defined on the same probability space, the joint probability distribution is the corresponding probability distribution on all possible pairs of outputs. The joint distribution can just as well be considere ...
on
. In reality, the learner never knows the true distribution
over instances. Instead, the learner usually has access to a training set of examples
. In this setting, the
loss function
In mathematical optimization and decision theory, a loss function or cost function (sometimes also called an error function) is a function that maps an event or values of one or more variables onto a real number intuitively representing some "co ...
is given as
, such that
measures the difference between the predicted value
and the true value
. The ideal goal is to select a function
, where
is a space of functions called a hypothesis space, so that some notion of total loss is minimised. Depending on the type of model (statistical or adversarial), one can devise different notions of loss, which lead to different learning algorithms.
Statistical view of online learning
In statistical learning models, the training sample
are assumed to have been drawn from the true distribution
and the objective is to minimize the expected "risk"
:
A common paradigm in this situation is to estimate a function
through
empirical risk minimization
Empirical risk minimization (ERM) is a principle in statistical learning theory which defines a family of learning algorithms and is used to give theoretical bounds on their performance. The core idea is that we cannot know exactly how well an a ...
or regularized empirical risk minimization (usually
Tikhonov regularization
Ridge regression is a method of estimating the coefficients of multiple- regression models in scenarios where the independent variables are highly correlated. It has been used in many fields including econometrics, chemistry, and engineering. Als ...
). The choice of loss function here gives rise to several well-known learning algorithms such as regularized
least squares
The method of least squares is a standard approach in regression analysis to approximate the solution of overdetermined systems (sets of equations in which there are more equations than unknowns) by minimizing the sum of the squares of the r ...
and
support vector machines
In machine learning, support vector machines (SVMs, also support vector networks) are supervised learning models with associated learning algorithms that analyze data for classification and regression analysis. Developed at AT&T Bell Laboratories ...
.
A purely online model in this category would learn based on just the new input
, the current best predictor
and some extra stored information (which is usually expected to have storage requirements independent of training data size). For many formulations, for example nonlinear
kernel methods
In machine learning, kernel machines are a class of algorithms for pattern analysis, whose best known member is the support-vector machine (SVM). The general task of pattern analysis is to find and study general types of relations (for example c ...
, true online learning is not possible, though a form of hybrid online learning with recursive algorithms can be used where
is permitted to depend on
and all previous data points
. In this case, the space requirements are no longer guaranteed to be constant since it requires storing all previous data points, but the solution may take less time to compute with the addition of a new data point, as compared to batch learning techniques.
A common strategy to overcome the above issues is to learn using mini-batches, which process a small batch of
data points at a time, this can be considered as pseudo-online learning for
much smaller than the total number of training points. Mini-batch techniques are used with repeated passing over the training data to obtain optimized out-of-core versions of machine learning algorithms, for example,
stochastic gradient descent
Stochastic gradient descent (often abbreviated SGD) is an iterative method for optimizing an objective function with suitable smoothness properties (e.g. differentiable or subdifferentiable). It can be regarded as a stochastic approximation of ...
. When combined with
backpropagation
In machine learning, backpropagation (backprop, BP) is a widely used algorithm for training feedforward artificial neural networks. Generalizations of backpropagation exist for other artificial neural networks (ANNs), and for functions gener ...
, this is currently the de facto training method for training
artificial neural networks.
Example: linear least squares
The simple example of linear least squares is used to explain a variety of ideas in online learning. The ideas are general enough to be applied to other settings, for example, with other convex loss functions.
Batch learning
Consider the setting of supervised learning with
being a linear function to be learned:
:
where
is a vector of inputs (data points) and
is a linear filter vector.
The goal is to compute the filter vector
.
To this end, a square loss function
:
is used to compute the vector
that minimizes the empirical loss
:
where
:
.
Let
be the
data matrix and
is the column vector of target values after the arrival of the first
data points.
Assuming that the covariance matrix
is invertible (otherwise it is preferential to proceed in a similar fashion with Tikhonov regularization), the best solution
to the linear least squares problem is given by
:
.
Now, calculating the covariance matrix
takes time
, inverting the
matrix takes time
, while the rest of the multiplication takes time
, giving a total time of
. When there are
total points in the dataset, to recompute the solution after the arrival of every datapoint
, the naive approach will have a total complexity
. Note that when storing the matrix
, then updating it at each step needs only adding
, which takes
time, reducing the total time to
, but with an additional storage space of
to store
.
[L. Rosasco, T. Poggio, Machine Learning: a Regularization Approach, MIT-9.520 Lectures Notes, Manuscript, Dec. 2015. Chapter 7 - Online Learning]
Online learning: recursive least squares
The recursive least squares (RLS) algorithm considers an online approach to the least squares problem. It can be shown that by initialising
and
, the solution of the linear least squares problem given in the previous section can be computed by the following iteration:
:
:
The above iteration algorithm can be proved using induction on
. The proof also shows that
.
One can look at RLS also in the context of adaptive filters (see
RLS).
The complexity for
steps of this algorithm is
, which is an order of magnitude faster than the corresponding batch learning complexity. The storage requirements at every step
here are to store the matrix
, which is constant at
. For the case when
is not invertible, consider the regularised version of the problem
loss function
. Then, it's easy to show that the same algorithm works with
, and the iterations proceed to give
.
Stochastic gradient descent
When this
:
is replaced by
:
or
by
, this becomes the stochastic gradient descent algorithm. In this case, the complexity for
steps of this algorithm reduces to
. The storage requirements at every step
are constant at
.
However, the stepsize
needs to be chosen carefully to solve the expected risk minimization problem, as detailed above. By choosing a decaying step size
one can prove the convergence of the average iterate
. This setting is a special case of
stochastic optimization
Stochastic optimization (SO) methods are optimization methods that generate and use random variables. For stochastic problems, the random variables appear in the formulation of the optimization problem itself, which involves random objective fun ...
, a well known problem in optimization.
Incremental stochastic gradient descent
In practice, one can perform multiple stochastic gradient passes (also called cycles or epochs) over the data. The algorithm thus obtained is
called incremental gradient method and corresponds to an iteration
:
The main difference with the stochastic gradient method is that here a sequence
is chosen to decide which training point is visited in the
-th step. Such a sequence can be stochastic or deterministic. The number of iterations is then decoupled to the number of points (each point can be considered more than once). The incremental gradient method can be shown to provide a minimizer to the empirical risk.
[Bertsekas, D. P. (2011). Incremental gradient, subgradient, and proximal methods for convex optimization: a survey. Optimization for Machine Learning, 85.] Incremental techniques can be advantageous when considering objective functions made up of a sum of many terms e.g. an empirical error corresponding to a very large dataset.
Kernel methods
Kernels can be used to extend the above algorithms to non-parametric models (or models where the parameters form an infinite dimensional space). The corresponding procedure will no longer be truly online and instead involve storing all the data points, but is still faster than the brute force method.
This discussion is restricted to the case of the square loss, though it can be extended to any convex loss. It can be shown by an easy induction
that if
is the data matrix and
is the output after
steps of the SGD algorithm, then,
:
where
and the sequence
satisfies the recursion:
:
:
and
:
Notice that here
is just the standard Kernel on
, and the predictor is of the form
:
.
Now, if a general kernel
is introduced instead and let the predictor be
:
then the same proof will also show that predictor minimising the least squares loss is obtained by changing the above recursion to
:
The above expression requires storing all the data for updating
. The total time complexity for the recursion when evaluating for the
-th datapoint is
, where
is the cost of evaluating the kernel on a single pair of points.
Thus, the use of the kernel has allowed the movement from a finite dimensional parameter space
to a possibly infinite dimensional feature represented by a kernel
by instead performing the recursion on the space of parameters
, whose dimension is the same as the size of the training dataset. In general, this is a consequence of the
representer theorem
For computer science, in statistical learning theory, a representer theorem is any of several related results stating that a minimizer f^ of a regularized empirical risk functional defined over a reproducing kernel Hilbert space can be represen ...
.
Online convex optimization
Online convex optimization (OCO) is a general framework for decision making which leverages
convex optimization
Convex optimization is a subfield of mathematical optimization that studies the problem of minimizing convex functions over convex sets (or, equivalently, maximizing concave functions over convex sets). Many classes of convex optimization prob ...
to allow for efficient algorithms. The framework is that of repeated game playing as follows:
For
* Learner receives input
* Learner outputs
from a fixed convex set
* Nature sends back a convex loss function
.
* Learner suffers loss
and updates its model
The goal is to minimize
regret, or the difference between cumulative loss and the loss of the best fixed point
in hindsight.
As an example, consider the case of online least squares linear regression. Here, the weight vectors come from the convex set
, and nature sends back the convex loss function
. Note here that
is implicitly sent with
.
Some online prediction problems however cannot fit in the framework of OCO. For example, in online classification, the prediction domain and the loss functions are not convex. In such scenarios, two simple techniques for
convexification are used:
randomisation and surrogate loss functions.
Some simple online convex optimisation algorithms are:
Follow the leader (FTL)
The simplest learning rule to try is to select (at the current step) the hypothesis that has the least loss over all past rounds. This algorithm is called Follow the leader, and is simply given round
by:
:
This method can thus be looked as a
greedy algorithm
A greedy algorithm is any algorithm that follows the problem-solving heuristic of making the locally optimal choice at each stage. In many problems, a greedy strategy does not produce an optimal solution, but a greedy heuristic can yield locall ...
. For the case of online quadratic optimization (where the loss function is
), one can show a regret bound that grows as
. However, similar bounds cannot be obtained for the FTL algorithm for other important families of models like online linear optimization. To do so, one modifies FTL by adding regularisation.
Follow the regularised leader (FTRL)
This is a natural modification of FTL that is used to stabilise the FTL solutions and obtain better regret bounds. A regularisation function
is chosen and learning performed in round as follows:
:
As a special example, consider the case of online linear optimisation i.e. where nature sends back loss functions of the form
. Also, let
. Suppose the regularisation function
is chosen for some positive number
. Then, one can show that the regret minimising iteration becomes
:
Note that this can be rewritten as
, which looks exactly like online gradient descent.
If is instead some convex subspace of
, would need to be projected onto, leading to the modified update rule
:
This algorithm is known as lazy projection, as the vector
accumulates the gradients. It is also known as Nesterov's dual averaging algorithm. In this scenario of linear loss functions and quadratic regularisation, the regret is bounded by
, and thus the average regret goes to as desired.
Online subgradient descent (OSD)
The above proved a regret bound for linear loss functions
. To generalise the algorithm to any convex loss function, the
subgradient of
is used as a linear approximation to
near
, leading to the online subgradient descent algorithm:
Initialise parameter
For
* Predict using
, receive
from nature.
* Choose
* If
, update as
* If
, project cumulative gradients onto
i.e.
One can use the OSD algorithm to derive
regret bounds for the online version of
SVM's for classification, which use the
hinge loss
Other algorithms
Quadratically regularised FTRL algorithms lead to lazily projected gradient algorithms as described above. To use the above for arbitrary convex functions and regularisers, one uses
online mirror descent In mathematics, mirror descent is an iterative optimization algorithm for finding a local minimum of a differentiable function.
It generalizes algorithms such as gradient descent and multiplicative weights.
History
Mirror descent was originall ...
. The optimal regularization in hindsight can be derived for linear loss functions, this leads to the
AdaGrad algorithm.
For the Euclidean regularisation, one can show a regret bound of
, which can be improved further to a
for strongly convex and exp-concave loss functions.
Continual learning
Continual learning means constantly improving the learned model by processing continuous
streams of information.
Continual learning capabilities are essential for software systems and autonomous agents interacting in an ever changing real world.
However, continual learning is a challenge for machine learning and neural network models since the continual acquisition of incrementally available information from non-stationary data distributions
generally leads to
catastrophic forgetting
Catastrophic interference, also known as catastrophic forgetting, is the tendency of an artificial neural network to abruptly and drastically forget previously learned information upon learning new information. Neural networks are an important par ...
.
Interpretations of online learning
The paradigm of online learning has different interpretations depending on the choice of the learning model, each of which has distinct implications about the predictive quality of the sequence of functions
. The prototypical stochastic gradient descent algorithm is used for this discussion. As noted above, its recursion is given by
:
The first interpretation consider the
stochastic gradient descent
Stochastic gradient descent (often abbreviated SGD) is an iterative method for optimizing an objective function with suitable smoothness properties (e.g. differentiable or subdifferentiable). It can be regarded as a stochastic approximation of ...
method as applied to the problem of minimizing the expected risk