Unsupervised Learning

Now that you have had a chance to understand and implement supervised data mining techniques, we can move on to unsupervised techniques. Unsupervised learning assumes no labels for training observations. We let the data tell us what its classification should be. This can be done using many approaches, but we will focus on clustering techniques in this course.

Unsupervised learning is a type of algorithm that learns patterns from untagged data. The hope is that through mimicry, which is an important mode of learning in people, the machine is forced to build a compact internal representation of its world and then generate imaginative content from it. In contrast to supervised learning, where data is tagged by an expert, e.g. as a "ball" or "fish", unsupervised methods exhibit self-organization that captures patterns as probability densities or a combination of neural feature preferences. The other levels in the supervision spectrum are reinforcement learning, where the machine is given only a numerical performance score as guidance, and semi-supervised learning, where a smaller portion of the data is tagged.

Two broad methods in unsupervised learning are neural networks and probabilistic methods.

Neural networks

Tasks vs. methods

Tendency for a task to employ Supervised vs. Unsupervised methods. Task names straddling circle boundaries is intentional. It

Tendency for a task to employ Supervised vs. Unsupervised methods. Task names straddling circle boundaries is intentional. It shows that the classical division of imaginative tasks (left) employing unsupervised methods is blurred in today's learning schemes.

Neural network tasks are often categorized as discriminative (recognition) or generative (imagination). Often but not always, discriminative tasks use supervised methods, and generative tasks use unsupervised ones. However, the separation is very hazy. For example, object recognition favors supervised learning, but unsupervised learning can also cluster objects into groups. Furthermore, as progress marches onward, some tasks employ both methods, and some tasks swing from one to another. For example, image recognition started off as heavily supervised but became a hybrid by employing unsupervised pre-training and then moved towards supervision again with the advent of dropout, relu, and adaptive learning rates.


Training

During the learning phase, an unsupervised network tries to mimic the data it's given and uses the error in its mimicked output to correct itself (ie. correct its weights & biases). Sometimes the error is expressed as a low probability that the erroneous output occurs, or it might be expressed as an unstable high-energy state in the network.

In contrast to the supervised method's dominant use of backpropagation, unsupervised learning also employs other methods, including Hopfield learning rule, Boltzmann learning rule, Contrastive Divergence, Wake Sleep, Variational Inference, Maximum Likelihood, Maximum A Posteriori, Gibbs Sampling, and backpropagating reconstruction errors or hidden state reparameterizations. See the table below for more details.


Energy

An energy function is a macroscopic measure of a network's activation state. In Boltzmann machines, it plays the role of the Cost function. This analogy with physics is inspired by Ludwig Boltzmann's analysis of a gas' macroscopic energy from the microscopic probabilities of particle motion  p \propto e^{E/kT} , where k is the Boltzmann constant and T is temperature. In the RBM network the relation is p = e−E / Z, where p & E vary over every possible activation pattern and \displaystyle \sum _{All Patterns} e ^{-E(pattern)}]. To be more precise, p(a) = e-E(a) / Z, where a is an activation pattern of all neurons (visible and hidden). Hence, early neural networks bear the name Boltzmann Machine. Paul Smolensky calls -E the Harmony. A network seeks low energy, which is high Harmony.


Networks

This table shows connection diagrams of various unsupervised networks, the details of which will be given in the section Comparison of Network. Circles are neurons, and the edges between them are connection weights. As network design changes, features are added to enable new capabilities or removed to make learning faster. For instance, neurons changes between deterministic (Hopfield) and stochastic (Boltzmann) to allow robust output, weights are removed within a layer (RBM) to hasten learning, or connections are allowed to become asymmetric (Helmholtz).


Hopfield   
Hopfield
A network based on magnetic domains in iron with a single self-connected layer. It can be used as a content addressable memory.
Boltzmann     Boltzmann Network is separated into 2 layers (hidden vs. visible), but still using symmetric 2-way weights. Following Boltzmann's thermodynamics, individual probabilities give rise to macroscopic energies.
RBM          RBM         Restricted Boltzmann Machine. This is a Boltzmann machine where lateral connections within a layer are prohibited to make analysis tractable.
Stacked Boltzmann Stacked Boltzmann This network has multiple RBMs to encode a hierarchy of hidden features. After a single RBM is trained, another blue hidden layer (see left RBM) is added, and the top 2 layers are trained as a red & blue RBM. Thus the middle layers of an RBM act as hidden or visible, depending on the training phase it's in.
Helmholtz     Helmholtz    Instead of the bidirectional symmetric connection of the stacked Boltzmann machines, we have separate one-way connections to form a loop. It does both generation and discrimination.
Autoencoder     Autoencoder A feed-forward network that aims to find a good middle layer representation of its input world. This network is deterministic, so it's not as robust as its successor, the VAE.
VAE VAE Applies Variational Inference to the Autoencoder. The middle layer is a set of means & variances for Gaussian distributions. The stochastic nature allows for more robust imagination than the deterministic autoencoder.

Of the networks bearing people's names, only Hopfield worked directly with neural networks. Boltzmann and Helmholtz came before artificial neural networks, but their work in physics and physiology inspired the analytical methods that were used.


History

1969 Perceptrons by Minsky & Papert show a perceptron without hidden layers fails on XOR
1970s (approximate dates) AI winter I
1974 Ising magnetic model proposed by WA Little for cognition
1980 Fukushima introduces the neocognitron, which is later called a convolution neural network. It is mostly used in SL, but deserves mention here.
1982 Ising variant Hopfield net described as CAMs and classifiers by John Hopfield.
1983 Ising variant Boltzmann machine with probabilistic neurons described by Hinton & Sejnowski following Sherington & Kirkpatrick's 1975 work.
1986 Paul Smolensky publishes Harmony Theory, which is an RBM with practically the same Boltzmann energy function. Smolensky did not give a practical training scheme. Hinton did in mid-2000s
1995 Schmidthuber introduces the LSTM neuron for languages.
1995 Dayan & Hinton introduces the Helmholtz machine
1995-2005 (approximate dates) AI winter II
2013 Kingma, Rezende, & co. introduced Variational Autoencoders as a Bayesian graphical probability network, with neural nets as components.

Specific Networks

Here, we highlight some characteristics of select networks. The details of each are given in the comparison table below.

Hopfield Network

Ferromagnetism inspired Hopfield networks. A neuron corresponds to an iron domain with binary magnetic moments Up and Down, and neural connections correspond to the domain's influence on each other. Symmetric connections enable a global energy formulation. During inference, the network updates each state using the standard activation step function. Symmetric weights and the right energy functions guarantee convergence to a stable activation pattern. Asymmetric weights are difficult to analyze. Hopfield nets are used as Content Addressable Memories (CAM).

Boltzmann Machine

These are stochastic Hopfield nets. Their state value is sampled from this pdf as follows: suppose a binary neuron fires with the Bernoulli probability p(1) = 1/3 and rests with p(0) = 2/3. One samples from it by taking a UNIFORMLY distributed random number y and plugging it into the inverted cumulative distribution function, which in this case is the step function thresholded at 2/3. The inverse function = { 0 if x <= 2/3, 1 if x > 2/3 }

Sigmoid Belief Net

Introduced by Radford Neal in 1992, this network applies ideas from probabilistic graphical models to neural networks. A key difference is that nodes in graphical models have pre-assigned meanings, whereas Belief Net neurons' features are determined after training. The network is a sparsely connected directed acyclic graph composed of binary stochastic neurons. The learning rule comes from Maximum Likelihood on p(X): Δwij ∝ sj * (si - pi), where pi = 1 / ( 1 + eweighted inputs into neuron i ). sjs are activations from an unbiased sample of the posterior distribution, and this is problematic due to the Explaining Away problem raised by Judea Perl. Variational Bayesian methods use a surrogate posterior and blatantly disregard this complexity.

Deep Belief Network

Introduced by Hinton, this network is a hybrid of RBM and Sigmoid Belief Network. The top 2 layers are an RBM, and the second layer, downwards, forms a sigmoid belief network. One trains it by the stacked RBM method and then throws away the recognition weights below the top RBM. As of 2009, 3-4 layers seem to be the optimal depth.

Helmholtz machine

These are early inspirations for the Variational Auto Encoders. It is 2 networks combined into one - forward weights operate recognition, and backward weights implement imagination. It is perhaps the first network to do both. Helmholtz did not work in machine learning, but he inspired the view of a "statistical inference engine whose function is to infer probable causes of sensory input" (3). the stochastic binary neuron outputs a probability that its state is 0 or 1. The data input is normally not considered a layer, but in the Helmholtz machine generation mode, the data layer receives input from the middle layer and has separate weights for this purpose, so it is considered a layer. Hence this network has 3 layers.

Variational autoencoder
These are inspired by Helmholtz machines and combines probability network with neural networks. An Autoencoder is a 3-layer CAM network, where the middle layer is supposed to be some internal representation of input patterns. The encoder neural network is a probability distribution qφ(z given x), and the decoder network is pθ(x given z). The weights are named phi & theta rather than W and V, as in Helmholtz - a cosmetic difference. These 2 networks here can be fully connected or use another NN scheme.

Comparison of networks

Hopfield Boltzmann RBM Stacked RBM Helmholtz Autoencoder VAE
Usage & notables CAM, traveling salesman problem CAM. The freedom of connections makes this network difficult to analyze. pattern recognition. used in MNIST digits and speech. recognition & imagination. trained with unsupervised pre-training and/or supervised fine-tuning. imagination, mimicry language: creative writing, translation. vision: enhancing blurry images generate realistic data
Neuron deterministic binary state. Activation = { 0 (or -1) if x is negative, 1 otherwise } stochastic binary Hopfield neuron ← same. (extended to real-valued in mid-2000s) ← same ← same language: LSTM. vision: local receptive fields. usually real-valued relu activation. middle layer neurons encode means & variances for Gaussians. In run mode (inference), the output of the middle layer is sampled values from the Gaussians.
Connections 1-layer with symmetric weights. No self-connections. 2-layers. 1-hidden & 1-visible. symmetric weights. ← same.
no lateral connections within a layer.
top layer is undirected, symmetric. other layers are 2-way, asymmetric. 3-layers: asymmetric weights. 2 networks combined into 1. 3-layers. The input is considered a layer even though it has no inbound weights. recurrent layers for NLP. feedforward convolutions for vision. input & output have the same neuron counts. 3-layers: input, encoder, distribution sampler decoder. the sampler is not considered a layer (e)
Inference & energy Energy is given by Gibbs probability measure : E = 1 2 i , j w i j s i s j + i θ i s i {\displaystyle E=-{\frac {1}{2}}\sum _{i,j}{w_{ij}{s_{i}}{s_{j}}}+\sum _{i}{\theta _{i}}{s_{i}}}  ← same ← same minimize KL divergence inference is only feed-forward. previous UL networks ran forwards AND backwards minimize error = reconstruction error - KLD
Training Δwij = si*sj, for +1/-1 neuron Δwij = e*(pij - p'ij). This is derived from minimizing KLD. e = learning rate, p' = predicted and p = actual distribution. Δwij = e*( < vi hj >data - < vi hj >equilibrium ). This is a form of contrastive divergence w/ Gibbs Sampling. "<>" are expectations. ← similar. train 1-layer at a time. approximate equilibrium state with a 3-segment pass. no back propagation. wake-sleep 2 phase training back propagate the reconstruction error reparameterize hidden state for backprop
Strength resembles physical systems so it inherits their equations ← same. hidden neurons act as internal representatation of the external world faster more practical training scheme than Boltzmann machines trains quickly. gives hierarchical layer of features mildly anatomical. analyzable w/ information theory & statistical mechanics
Weakness hard to train due to lateral connections equilibrium requires too many iterations integer & real-valued neurons are more complicated.


Hebbian Learning, ART, SOM

The classical example of unsupervised learning in the study of neural networks is Donald Hebb's principle, that is, neurons that fire together wire together. In Hebbian learning, the connection is reinforced irrespective of an error but is exclusively a function of the coincidence between action potentials between the two neurons. A similar version that modifies synaptic weights takes into account the time between the action potentials (spike-timing-dependent plasticity or STDP). Hebbian Learning has been hypothesized to underlie a range of cognitive functions, such as pattern recognition and experiential learning.

Among neural network models, the self-organizing map (SOM) and adaptive resonance theory (ART) are commonly used in unsupervised learning algorithms. The SOM is a topographic organization in which nearby locations on the map represent inputs with similar properties. The ART model allows the number of clusters to vary with problem size and lets the user control the degree of similarity between members of the same clusters by means of a user-defined constant called the vigilance parameter. ART networks are used for many pattern recognition tasks, such as automatic target recognition and seismic signal processing.


Probabilistic methods

Two of the main methods used in unsupervised learning are principal component and cluster analysis. Cluster analysis is used in unsupervised learning to group or segment datasets with shared attributes in order to extrapolate algorithmic relationships. Cluster analysis is a branch of machine learning that groups the data that has not been labeled, classified, or categorized. Instead of responding to feedback, cluster analysis identifies commonalities in the data and reacts based on the presence or absence of such commonalities in each new piece of data. This approach helps detect anomalous data points that do not fit into either group.

A central application of unsupervised learning is in the field of density estimation in statistics, though unsupervised learning encompasses many other domains involving summarizing and explaining data features. It can be contrasted with supervised learning by saying that whereas supervised learning intends to infer a conditional probability distribution conditioned on the label of input data, unsupervised learning intends to infer an a priori probability distribution.


Approaches

Some of the most common algorithms used in unsupervised learning include: (1) Clustering, (2) Anomaly detection, and (3) Approaches to learning latent variable models. Each approach uses several methods as follows:

  • Clustering methods include: hierarchical clustering, k-means, mixture models, DBSCAN, and OPTICS algorithm
  • Anomaly detection methods include: Local Outlier Factor and Isolation Forest
  • Approaches for learning latent variable models such as Expectation–maximization algorithm (EM), Method of moments, and Blind signal separation techniques (Principal component analysis, Independent component analysis, Non-negative matrix factorization, Singular value decomposition)

Method of moments

One of the statistical approaches for unsupervised learning is the method of moments. In the method of moments, the unknown parameters (of interest) in the model are related to the moments of one or more random variables, and thus, these unknown parameters can be estimated given the moments. The moments are usually estimated from samples empirically. The basic moments are first and second-order moments. For a random vector, the first-order moment is the mean vector, and the second-order moment is the covariance matrix (when the mean is zero). Higher order moments are usually represented using tensors which are the generalization of matrices to higher orders as multi-dimensional arrays.

In particular, the method of moments is shown to be effective in learning the parameters of latent variable models. Latent variable models are statistical models where in addition to the observed variables, a set of latent variables also exists which is not observed. A highly practical example of latent variable models in machine learning is topic modeling which is a statistical model for generating the words (observed variables) in the document based on the topic (latent variable) of the document. In the topic modeling, the words in the document are generated according to different statistical parameters when the topic of the document is changed. It is shown that the method of moments (tensor decomposition techniques) consistently recovers the parameters of a large class of latent variable models under some assumptions.

The Expectation–maximization algorithm (EM) is also one of the most practical methods for learning latent variable models. However, it can get stuck in local optima, and it is not guaranteed that the algorithm will converge to the true unknown parameters of the model. In contrast, for the method of moments, global convergence is guaranteed under some conditions.


Source: Wikipedia, https://en.wikipedia.org/wiki/Unsupervised_learning
Creative Commons License This work is licensed under a Creative Commons Attribution-ShareAlike 3.0 License.

Last modified: Tuesday, September 27, 2022, 6:05 PM