Python package for 'Multivariate Time Series Sub-Sequence CLustering Metric'
Project description
Multivariate Time Series Sub-Sequence Clustering Metric
This repository provides a Python package for computing a multivariate time series subsequence clustering metric[^koehn]. The purpose is to have a meaningful metric for comparing time-series clustering algorithms.
Motivation
To our knowledge no existing clustering metric exists, that takes the time space variations like curvature, acceleration or torsion in a multidimensional space into consideration. We believe using these curve parameters, is an intuitive method to measure similarities between mechatronic system state changes or subsequences in multivariate time-series data (MTSD) in general.
Details
Our MT3SCM score consists of three main components
$$ mt3scm = (cc_w + s_L + s_P) / 3 $$
The weighted curvature consistency ( $cc_w$ ), the silhouette location based ( $s_L$ ) and the silhouette curve-parameter based ( $s_P$ ). When making the attempt of clustering TSD, it is subjective and domain specific. Nevertheless, we try to take the intuitive approach of treating MTSD as space curves and use the parameterization as a similarity measure. This is done in two different ways. First we create new features by computing the curve parameters sample by sample (e.g.: curvature, torsion, acceleration) and determine their standard deviation for each cluster. Our hypothesis is, that with a low standard deviation of the curve parameters inside a cluster, the actions of a mechatronic system in this cluster are similar. We call this the curvature consistency ( $cc$ )
The second procedure is to apply these newly computed features, which are computed to scalar values per subsequence, onto a well established internal clustering metric, the silhouette score[^rous1]
The computation of the $cc$ comprises the calculation of the curvature $\kappa$ and the torsion $\tau$ at every time step $t$ with $\boldsymbol{x}_{t}$ .
Afterwards the $cc$ is calculated per cluster $i \in \mathcal{I}$ , by taking the empirical standard deviation for each curve parameter (exemplarily for $\kappa$ in with the set of subsequence indexes $\mathcal{J}_i$ within our cluster $i$ ). The arithmetic mean of the standard deviations for the curvature $\kappa$, torsion $\tau$ and the acceleration $a$ results in the final $cc$ per cluster.
The main idea of this approach is to combine three main parts inside one metric. First incentive is to reward a low standard deviation of the curve parameters in between a cluster (accomplished by $cc$ ). Second, to benchmark the clusters spatial separation based on the new feature space (curve parameters, accomplished by $s_P$ ). And third, to benchmark the clusters spatial separation based on the median of the subsequence in the original feature space (accomplished by $s_L$ ).
For further details on the computation see the pubplication [^koehn]
Usage
Package can be installed via pip with
$ pip install mt3scm
There are two ways to compute the metric score
import numpy as np
from mt3scm import mt3scm_score
# Number of datapoints (time-steps)
n_p = 1000
# Number of dimensions or features
dim = 5
X = np.random.rand(n_p, dim)
# Number of clusters
n_c = 5
y = np.random.randint(n_c, size=n_p)
# Compute mt3scm
score = mt3scm_score(X, y)
print(score)
When using the class you can investigate internal values as well.
from mt3scm import MT3SCM
metric = MT3SCM()
kappa, tau, speed, acceleration = metric.compute_curvature(X)
score = metric.mt3scm_score(X, y)
print(score)
print(metric.df_centers)
print(metric.df_curve)
Creating plots
$ python -m main --plot
Comparison of unsupervised clustering metrics with lorenz attractor data
This example shows the effect of different metrics on the lorenz attractor dataset when using different types of label arrays. For the different unsupervised clustering labels we use the AgglomerativeClustering algorithm by varying the connectivity and the linkage as well as the number of clusters (along the lines of the scikit-learn example)
References
[^koehn]: Köhne, J. et al. Autoencoder based iterative modeling and multivariate time-series subsequence clustering algorithm
[^rous1]: "Rousseeuw, P. J. Silhouettes: A graphical aid to the interpretation and validation of cluster analysis. Journal of Computational and Applied Mathematics 20. PII: 0377042787901257, 53–65. ISSN: 03770427 (1987)"
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file mt3scm-0.4.8.tar.gz
.
File metadata
- Download URL: mt3scm-0.4.8.tar.gz
- Upload date:
- Size: 13.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.1.13 CPython/3.9.9 Linux/5.15.0-46-generic
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 9d7545678a1aabdc3ddcb0d4482d75c88ad6b2bc273495e99cf80ed3600f3aab |
|
MD5 | 29161b338f170226b58df91cc6e9607e |
|
BLAKE2b-256 | 696cef2c31ba9c2909b45ab9c3ca6b8c8a7af43bbc0a5ef69beddd90898c3f66 |
File details
Details for the file mt3scm-0.4.8-py3-none-any.whl
.
File metadata
- Download URL: mt3scm-0.4.8-py3-none-any.whl
- Upload date:
- Size: 10.8 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.1.13 CPython/3.9.9 Linux/5.15.0-46-generic
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | e6cd0f7e8663357b1b6f866fd874d5abd8da4dc0c9ec95a9a633c4051f3578ed |
|
MD5 | 8fadb1c43fe6e2f540a65fbf04a1892d |
|
BLAKE2b-256 | 6804beaf964621b9f8cae86c03c1d9a6f244a91015efbb02e40c79c4fe84b8f4 |