Repository URL to install this package:
|
Version:
1.1.2 ▾
|
# _base.py
# Author: Jacob Schreiber <jmschreiber91@gmail.com>
import time
import numpy
import torch
from .._utils import _cast_as_tensor
from .._utils import _cast_as_parameter
from .._utils import _check_parameter
from .._utils import partition_sequences
from ..distributions._distribution import Distribution
from ..kmeans import KMeans
NEGINF = float("-inf")
def _check_inputs(model, X, emissions, priors):
if X is None and emissions is None:
raise ValueError("Must pass in one of `X` or `emissions`.")
emissions = _check_parameter(_cast_as_tensor(emissions), "emissions",
ndim=3)
if emissions is None:
emissions = model._emission_matrix(X, priors=priors)
return emissions
class Silent(Distribution):
def __init__(self):
super().__init__(inertia=0.0, frozen=False, check_data=True)
class _BaseHMM(Distribution):
"""A base hidden Markov model.
A hidden Markov model is an extension of a mixture model to sequences by
including a transition matrix between the elements of the mixture. Each of
the algorithms for a hidden Markov model are essentially just a revision
of those algorithms to incorporate this transition matrix.
There are two main ways one can implement a hidden Markov model: either the
transition matrix can be implemented in a dense, or a sparse, manner. If the
transition matrix is dense, implementing it in a dense manner allows for
the primary computation to use matrix multiplications which can be very
fast. However, if the matrix is sparse, these matrix multiplications will
be fairly slow and end up significantly slower than the sparse version of
a matrix multiplication.
This object is a wrapper for both implementations, which can be specified
using the `kind` parameter. Choosing the right implementation will not
effect the accuracy of the results but will change the speed at which they
are calculated.
Separately, there are two ways to instantiate the hidden Markov model. The
first is by passing in a set of distributions, a dense transition matrix,
and optionally start/end probabilities. The second is to initialize the
object without these and then to add edges using the `add_edge` method
and to add nodes using the `add_nodes` method. Importantly, the way that
you choose to initialize the hidden Markov model is independent of the
implementation that you end up choosing. If you pass in a dense transition
matrix, this will be converted to a sparse matrix with all the zeros
dropped if you choose `kind='sparse'`.
Parameters
----------
distributions: tuple or list
A set of distribution objects. These objects do not need to be
initialized, i.e., can be "Normal()".
edges: numpy.ndarray, torch.Tensor, or None. shape=(k,k), optional
A dense transition matrix of probabilities for how each node or
distribution passed in connects to each other one. This can contain
many zeroes, and when paired with `kind='sparse'`, will drop those
elements from the matrix. Default is None.
starts: list, numpy.ndarray, torch.Tensor, or None. shape=(k,), optional
The probability of starting at each node. If not provided, assumes
these probabilities are uniform. Default is None.
ends: list, numpy.ndarray, torch.Tensor, or None. shape=(k,), optional
The probability of ending at each node. If not provided, assumes
these probabilities are uniform. Default is None.
kind: str, 'sparse' or 'dense', optional
The underlying implementation of the transition matrix to use.
Default is 'sparse'.
init: str, optional
The initialization to use for the k-means initialization approach.
Default is 'first-k'. Must be one of:
'first-k': Use the first k examples from the data set
'random': Use a random set of k examples from the data set
'submodular-facility-location': Use a facility location submodular
objective to initialize the k-means algorithm
'submodular-feature-based': Use a feature-based submodular objective
to initialize the k-means algorithm.
max_iter: int, optional
The number of iterations to do in the EM step, which for HMMs is
sometimes called Baum-Welch. Default is 10.
tol: float, optional
The threshold at which to stop during fitting when the improvement
goes under. Default is 0.1.
inertia: float, [0, 1], optional
Indicates the proportion of the update to apply to the parameters
during training. When the inertia is 0.0, the update is applied in
its entirety and the previous parameters are ignored. When the
inertia is 1.0, the update is entirely ignored and the previous
parameters are kept, equivalently to if the parameters were frozen.
frozen: bool, optional
Whether all the parameters associated with this distribution are frozen.
If you want to freeze individual pameters, or individual values in those
parameters, you must modify the `frozen` attribute of the tensor or
parameter directly. Default is False.
random_state: int or None, optional
The random state to make randomness deterministic. If None, not
deterministic. Default is None.
check_data: bool, optional
Whether to check properties of the data and potentially recast it to
torch.tensors. This does not prevent checking of parameters but can
slightly speed up computation when you know that your inputs are valid.
Setting this to False is also necessary for compiling.
verbose: bool, optional
Whether to print the improvement and timings during training.
"""
def __init__(self, distributions=None, starts=None, ends=None,
init='random', max_iter=1000, tol=0.1, sample_length=None,
return_sample_paths=False, inertia=0.0, frozen=False, check_data=True,
random_state=None, verbose=False):
super().__init__(inertia=inertia, frozen=frozen, check_data=check_data)
self.distributions = distributions
n = len(distributions) if distributions is not None else None
self.start = Silent()
self.end = Silent()
self.edges = None
self.starts = None
self.ends = None
if starts is not None:
starts = _check_parameter(_cast_as_tensor(starts), "starts", ndim=1,
shape=(n,), min_value=0., max_value=1., value_sum=1.0)
self.starts = _cast_as_parameter(torch.log(starts))
if ends is not None:
ends = _check_parameter(_cast_as_tensor(ends), "ends", ndim=1,
shape=(n,), min_value=0., max_value=1.)
self.ends = _cast_as_parameter(torch.log(ends))
if not isinstance(random_state, numpy.random.RandomState):
self.random_state = numpy.random.RandomState(random_state)
else:
self.random_state = random_state
self.init = init
self.max_iter = _check_parameter(max_iter, "max_iter", min_value=1,
ndim=0, dtypes=(int, torch.int32, torch.int64))
self.tol = _check_parameter(tol, "tol", min_value=0., ndim=0)
self.sample_length = sample_length
self.return_sample_paths = return_sample_paths
self.verbose = verbose
self.d = self.distributions[0].d if distributions is not None else None
def _initialize(self, X=None, sample_weight=None):
"""Initialize the probability distribution.
This method is meant to only be called internally. It initializes the
parameters of the distribution and stores its dimensionality. For more
complex methods, this function will do more.
Parameters
----------
X: list, numpy.ndarray, torch.Tensor, shape=(-1, len, self.d), optional
The data to use to initialize the model. Default is None.
sample_weight: list, tuple, numpy.ndarray, torch.Tensor, optional
A set of weights for the examples. This can be either of shape
(-1, len) or a vector of shape (-1,). If None, defaults to ones.
Default is None.
"""
n = self.n_distributions
if self.starts is None:
self.starts = _cast_as_parameter(torch.log(torch.ones(n,
dtype=self.dtype, device=self.device) / n))
if self.ends is None:
self.ends = _cast_as_parameter(torch.log(torch.ones(n,
dtype=self.dtype, device=self.device) / n))
_init = all(d._initialized for d in self.distributions)
if X is not None and not _init:
if isinstance(X, list):
d = _cast_as_tensor(X[0]).shape[-1]
X = torch.cat([_cast_as_tensor(x).reshape(-1, d) for x in X],
dim=0).unsqueeze(0)
X = _check_parameter(_cast_as_tensor(X), "X", ndim=3,
check_parameter=self.check_data)
X = X.reshape(-1, X.shape[-1])
if sample_weight is None:
sample_weight = torch.ones(1, dtype=self.dtype,
device=self.device).to(X.device).expand(X.shape[0], 1)
else:
if isinstance(sample_weight, list):
sample_weight = torch.cat([_cast_as_tensor(w).reshape(-1, 1)
for w in sample_weight], dim=0).to(X.device)
sample_weight = _check_parameter(_cast_as_tensor(
sample_weight).reshape(-1, 1), "sample_weight",
min_value=0., ndim=1, shape=(len(X),),
check_parameter=self.check_data).reshape(-1, 1)
model = KMeans(self.n_distributions, init=self.init, max_iter=1,
random_state=self.random_state).to(self.device)
y_hat = model.fit_predict(X, sample_weight=sample_weight)
for i in range(self.n_distributions):
self.distributions[i].fit(X[y_hat == i].cpu(),
sample_weight=sample_weight[y_hat == i].cpu())
self.distributions[i].to(X.device)
self.d = X.shape[-1]
super()._initialize(X.shape[-1])
self._initialized = True
self._reset_cache()
def _emission_matrix(self, X, priors=None):
"""Return the emission/responsibility matrix.
This method returns the log probability of each example under each
distribution contained in the model with the log prior probability
of each component added.
Parameters
----------
X: list, numpy.ndarray, torch.Tensor, shape=(-1, len, self.d)
A set of examples to evaluate.
priors: list, numpy.ndarray, torch.Tensor, shape=(-1, -1, self.k)
Prior probabilities of assigning each symbol to each node. If not
provided, do not include in the calculations (conceptually
equivalent to a uniform probability, but without scaling the
probabilities). This can be used to assign labels to observatons
by setting one of the probabilities for an observation to 1.0.
Note that this can be used to assign hard labels, but does not
have the same semantics for soft labels, in that it only
influences the initial estimate of an observation being generated
by a component, not gives a target. Default is None.
Returns
-------
e: torch.Tensor, shape=(-1, len, self.k)
A set of log probabilities for each example under each distribution.
"""
X = _check_parameter(_cast_as_tensor(X), "X", ndim=3,
shape=(-1, -1, self.d), check_parameter=self.check_data)
n, k, _ = X.shape
X = X.reshape(n*k, self.d)
priors = _check_parameter(_cast_as_tensor(priors), "priors",
ndim=3, shape=(n, k, self.k), min_value=0.0, max_value=1.0,
value_sum=1.0, value_sum_dim=-1, check_parameter=self.check_data)
if not self._initialized:
self._initialize()
e = torch.empty((k, self.k, n), dtype=self.dtype, requires_grad=False,
device=self.device)
for i, node in enumerate(self.distributions):
logp = node.log_probability(X)
if isinstance(logp, torch.masked.MaskedTensor):
logp = logp._masked_data
e[:, i] = logp.reshape(n, k).T
e = e.permute(2, 0, 1)
if priors is not None:
e += torch.log(priors)
return e
@property
def k(self):
return len(self.distributions) if self.distributions is not None else 0
@property
def n_distributions(self):
return len(self.distributions) if self.distributions is not None else 0
def freeze(self):
"""Freeze this model and all child distributions."""
self.register_buffer("frozen", _cast_as_tensor(True))
for d in self.distributions:
d.freeze()
return self
def unfreeze(self):
"""Unfreeze this model and all child distributions."""
self.register_buffer("frozen", _cast_as_tensor(False))
for d in self.distributions:
d.unfreeze()
return self
def add_distribution(self, distribution):
"""Add a distribution to the model.
Parameters
----------
distribution: torchegranate.distributions.Distribution
A distribution object.
"""
if self.distributions is None:
self.distributions = []
if not isinstance(distribution, Distribution):
raise ValueError("distribution must be a distribution object.")
self.distributions.append(distribution)
self.d = distribution.d
def add_distributions(self, distributions):
"""Add a set of distributions to the model.
This method will iterative call the `add_distribution`.
Parameters
----------
distributions: list, tuple, iterable
A set of distributions to add to the model.
"""
for distribution in distributions:
self.add_distribution(distribution)
def add_edge(self, start, end, probability):
"""Add an edge to the model.
This method takes in two distribution objects and the probability
connecting the two and adds an edge to the model.
Parameters
----------
start: torchegranate.distributions.Distribution
The parent node for the edge
end: torchegranate.distributions.Distribution
The child node for the edge
probability: float, (0, 1]
The probability of connecting the two.
"""
if not isinstance(start, Distribution):
raise ValueError("start must be a distribution.")
if not isinstance(end, Distribution):
raise ValueError("end must be a distribution.")
if not isinstance(probability, float):
raise ValueError("probability must be a float.")
if self.edges is None:
self.edges = []
self.edges.append((start, end, probability))
def probability(self, X, priors=None):
"""Calculate the probability of each example.
This method calculates the probability of each example given the
parameters of the distribution. The examples must be given in a 3D
format.
Parameters
----------
X: list, tuple, numpy.ndarray, torch.Tensor, shape=(-1, self.d)
A set of examples to evaluate.
priors: list, numpy.ndarray, torch.Tensor, shape=(-1, length, self.d)
Prior probabilities of assigning each symbol to each node. If not
provided, do not include in the calculations (conceptually
equivalent to a uniform probability, but without scaling the
probabilities).
Returns
-------
prob: torch.Tensor, shape=(-1,)
The probability of each example.
"""
return torch.exp(self.log_probability(X, priors=priors))
def log_probability(self, X, priors=None):
"""Calculate the log probability of each example.
This method calculates the log probability of each example given the
parameters of the distribution. The examples must be given in a 3D
format.
Parameters
----------
X: list, tuple, numpy.ndarray, torch.Tensor, shape=(-1, self.d)
A set of examples to evaluate.
priors: list, numpy.ndarray, torch.Tensor, shape=(-1, length, self.d)
Prior probabilities of assigning each symbol to each node. If not
provided, do not include in the calculations (conceptually
equivalent to a uniform probability, but without scaling the
probabilities).
Returns
-------
logp: torch.Tensor, shape=(-1,)
The log probability of each example.
"""
f = self.forward(X, priors=priors)
return torch.logsumexp(f[:, -1] + self.ends, dim=1)
def predict_log_proba(self, X, priors=None):
"""Calculate the posterior probabilities for each example.
This method calculates the log posterior probabilities for each example
and then normalizes across each component of the model. These
probabilities are calculated using the forward-backward algorithm.
Parameters
----------
X: list, tuple, numpy.ndarray, torch.Tensor, shape=(-1, len, self.d)
A set of examples to summarize.
priors: list, numpy.ndarray, torch.Tensor, shape=(-1, len, self.n_distributions)
Prior probabilities of assigning each symbol to each node. If not
provided, do not include in the calculations (conceptually
equivalent to a uniform probability, but without scaling the
probabilities).
Returns
-------
r: torch.Tensor, shape=(-1, len, self.n_distributions)
The log posterior probabilities for each example under each
component as calculated by the forward-backward algorithm.
"""
_, r, _, _, _ = self.forward_backward(X, priors=priors)
return r
def predict_proba(self, X, priors=None):
"""Calculate the posterior probabilities for each example.
This method calculates the posterior probabilities for each example
and then normalizes across each component of the model. These
probabilities are calculated using the forward-backward algorithm.
Parameters
----------
X: list, tuple, numpy.ndarray, torch.Tensor, shape=(-1, len, self.d)
A set of examples to summarize.
priors: list, numpy.ndarray, torch.Tensor, shape=(-1, len, self.n_distributions)
Prior probabilities of assigning each symbol to each node. If not
provided, do not include in the calculations (conceptually
equivalent to a uniform probability, but without scaling the
probabilities).
Returns
-------
y: torch.Tensor, shape=(-1, len, self.n_distributions)
The posterior probabilities for each example under each component
as calculated by the forward-backward algorithm.
"""
return torch.exp(self.predict_log_proba(X, priors=priors))
def predict(self, X, priors=None):
"""Predicts the component for each observation.
This method calculates the predicted component for each observation
given the posterior probabilities as calculated by the forward-backward
algorithm. Essentially, it is just the argmax over components.
Parameters
----------
X: list, tuple, numpy.ndarray, torch.Tensor, shape=(-1, len, self.d)
A set of examples to summarize.
priors: list, numpy.ndarray, torch.Tensor, shape=(-1, length, self.d)
Prior probabilities of assigning each symbol to each node. If not
provided, do not include in the calculations (conceptually
equivalent to a uniform probability, but without scaling the
probabilities).
Returns
-------
y: torch.Tensor, shape=(-1, len, self.k)
The posterior probabilities for each example under each component
as calculated by the forward-backward algorithm.
"""
return torch.argmax(self.predict_log_proba(X, priors=priors), dim=-1)
def fit(self, X, sample_weight=None, priors=None):
"""Fit the model to sequences with optional weights and priors.
This method implements the core of the learning process. For hidden
Markov models, this is a form of EM called "Baum-Welch" or "structured
EM". This iterative algorithm will proceed until converging, either
according to the threshold set by `tol` or until the maximum number
of iterations set by `max_iter` has been hit.
This method is largely a wrapper around the `summarize` and
`from_summaries` methods. It's primary contribution is serving as a
loop around these functions and to monitor convergence.
Unlike other HMM methods, this method can handle variable length
sequences by accepting a list of tensors where each tensor has a
different sequence length. Then, summarization is done on each tensor
sequentially. This will provide an exact update as if the entire data
set was seen at the same time but will allow batched operations to be
performed on each variable length tensor.
Parameters
----------
X: list, numpy.ndarray, torch.Tensor, shape=(-1, len, self.d)
A set of examples to evaluate. Because sequences can be variable
length, there are three ways to format the sequences.
1. Pass in a tensor of shape (n, length, dim), which can only
be done when each sequence is the same length.
2. Pass in a list of 3D tensors where each tensor has the shape
(n, length, dim). In this case, each tensor is a collection of
sequences of the same length and so sequences of different
lengths can be trained on.
3. Pass in a list of 2D tensors where each tensor has the shape
(length, dim). In this case, sequences of the same length will
be grouped together into the same tensor and fitting will
proceed as if you had passed in data like way 2.
sample_weight: list, numpy.ndarray, torch.Tensor or None, optional
A set of weights for the examples. These must follow the same format
as X.
priors: list, numpy.ndarray, torch.Tensor, shape=(-1, -1, self.k)
Prior probabilities of assigning each symbol to each node. If not
provided, do not include in the calculations (conceptually
equivalent to a uniform probability, but without scaling the
probabilities). This can be used to assign labels to observations
by setting one of the probabilities for an observation to 1.0.
Note that this can be used to assign hard labels, but does not
have the same semantics for soft labels, in that it only
influences the initial estimate of an observation being generated
by a component, not gives a target. Must be formatted in the same
shape as X. Default is None.
Returns
-------
self
"""
X, sample_weight, priors = partition_sequences(X,
sample_weight=sample_weight, priors=priors, n_dists=self.k)
# Initialize by concatenating across sequences
if not self._initialized:
if sample_weight is None:
self._initialize(X)
else:
self._initialize(X, sample_weight=sample_weight)
logp, last_logp = None, None
for i in range(self.max_iter):
start_time = time.time()
# Train loop across all tensors
logp = 0
for j, X_ in enumerate(X):
w_ = None if sample_weight is None else sample_weight[j]
p_ = None if priors is None else priors[j]
logp += self.summarize(X_, sample_weight=w_, priors=p_).sum()
# Calculate and check improvement and optionally print it
if i > 0:
improvement = logp - last_logp
duration = time.time() - start_time
if self.verbose:
print("[{}] Improvement: {}, Time: {:4.4}s".format(i,
improvement, duration))
if improvement < self.tol:
self._reset_cache()
return self
last_logp = logp
self.from_summaries()
# Calculate for the last iteration
if self.verbose:
logp = 0
for j, X_ in enumerate(X):
w_ = None if sample_weight is None else sample_weight[j]
p_ = None if priors is None else priors[j]
logp += self.summarize(X_, sample_weight=w_, priors=p_).sum()
improvement = logp - last_logp
duration = time.time() - start_time
print("[{}] Improvement: {}, Time: {:4.4}s".format(i+1,
improvement, duration))
self._reset_cache()
return self
def summarize(self, X, sample_weight=None, emissions=None,
priors=None):
"""Extract the sufficient statistics from a batch of data.
This method calculates the sufficient statistics from optionally
weighted data and adds them to the stored cache. The examples must be
given in a 2D format. Sample weights can either be provided as one
value per example or as a 2D matrix of weights for each feature in
each example.
Parameters
----------
X: list, tuple, numpy.ndarray, torch.Tensor, shape=(-1, len, self.d)
A set of examples to summarize.
sample_weight: list, tuple, numpy.ndarray, torch.Tensor, optional
A set of weights for the examples. This can be either of shape
(-1, length, self.d) or a vector of shape (-1,). Default is ones.
emissions: list, numpy.ndarray, torch.Tensor, shape=(-1, -1, n_distributions)
Precalculated emission log probabilities. These are the
probabilities of each observation under each probability
distribution. When running some algorithms it is more efficient
to precalculate these and pass them into each call.
priors: list, numpy.ndarray, torch.Tensor, shape=(-1, len, self.n_distributions)
Prior probabilities of assigning each symbol to each node. If not
provided, do not include in the calculations (conceptually
equivalent to a uniform probability, but without scaling the
probabilities).
Returns
-------
logp: torch.Tensor, shape=(-1,)
The log probability of each example.
"""
X = _check_parameter(_cast_as_tensor(X), "X", ndim=3,
shape=(-1, -1, self.d), check_parameter=self.check_data)
emissions = _check_inputs(self, X, emissions, priors)
if sample_weight is None:
sample_weight = torch.ones(1, device=self.device).expand(
emissions.shape[0], 1)
else:
sample_weight = _check_parameter(_cast_as_tensor(sample_weight),
"sample_weight", min_value=0., ndim=1,
shape=(emissions.shape[0],),
check_parameter=self.check_data).reshape(-1, 1)
if not self._initialized:
self._initialize(X, sample_weight=sample_weight)
return X, emissions, sample_weight
def from_summaries(self):
"""Update the model parameters given the extracted statistics.
This method uses calculated statistics from calls to the `summarize`
method to update the distribution parameters. Hyperparameters for the
update are passed in at initialization time.
Note: Internally, a call to `fit` is just a successive call to the
`summarize` method followed by the `from_summaries` method.
"""
self.from_summaries()
self._reset_cache()