Skip to main content

The Random Dilation Shapelet Transform algorithm

Project description

pip Language grade: Python Total alerts lines

Welcome to the convst repository. It contains the implementation of the Random Dilated Shapelet Transform (RDST) along with other works in the same area.

!! Starting from version 0.15, backward compatibility with convst < 0.15 will be broken due to a total overhaul of the method. !!

Installation

The package was built and is using Python 3.8+ as default. If inquieries are made for support of earlier version of Python, i will make the adjustements.

The recommended way to install the latest stable version is to use pip with pip install convst. To install the package from sources you can download the latest version on github and run python setup.py install. This should install the package and automaticaly look for the dependencies using pip.

We recommend doing this in a new virtual environment using anaconda to avoid any conflict with an existing installation. If you wish to install dependencies individually, you can see dependencies in the requierements.txt file.

An optional dependency that can help speed up numba, which is used in our implementation, is the Intel vector math library (SVML). When using conda it can be installed by running conda install -c numba icc_rt. I didn't test the behavior with AMD processors but i suspect it won't work.

Tutorial

We give here a minimal example to run the RDST algorithm on any dataset of the UCR archive using the sktime API to fect dataset:

from convst.classifiers import R_DST_Ridge

from convst.utils.dataset_utils import load_sktime_dataset_split



X_train, X_test, y_train, y_test, _ = load_sktime_dataset_split(

    'GunPoint', normalize=True

)



# First run may be slow due to numba compilations on the first call. 

# Run small dataset like GunPoint if this is the first time you call RDST on your system.

# You can change n_shapelets to 1 to make this process faster.



rdst = R_DST_Ridge(n_shapelets=10_000).fit(X_train, y_train)



print("Accuracy Score for RDST : {}".format(rdst.score(X_test, y_test)))

You can also visualize a shapelet using the visualisation tool to obtain such visualisation :

Example of shapelet visualisation

To know more about all the interpretability tools, check the documentation on readthedocs.

Suported inputs

We use the standard scikit-learn interface and expect as input a 3D matrix of shape (n_samples, n_features, n_timestamps). Note that as only univariate is supported in version 0.15.0, RDST will only process the first feature.

A generalized version of the algorithm will be available in next release, allowing to classify multivariate and/or uneven length time series.

Reproducing the paper results

Multiple scripts are available under the PaperScripts folder. It contains the exact same scripts used to generate our results.

To obtain the same resampling data as the UCR archive, you must use the tsml java repository, then from the class DataHandling in the package examples, use the function resamplingData and change where to read and write the data from. The function assumes the input is in arff format, they can be obtained on the time serie classification website

Contributing, Citing and Contact

If you are experiencing bugs in the RDST implementation, or would like to contribute in any way, please create an issue or pull request in this repository.

For other question or to take contact with me, you can email me at antoine.guillaume45@gmail.com

If you use our algorithm or publication in any work, please cite the following paper (ArXiv version will be up soon):

@article{RDST,

  title={Random Dilated Shapelet Transform: A new approach for time series shapelets},

  author={Antoine Guillaume, Christel Vrain, Wael Elloumi},

  journal={},

  volume={},

  number={},

  pages={},

  year={2022}

  publisher={}

}

This paper is set to appear in the proceedings of ICPRAI 2022, published by Springer in Lecture Notes in Computer Science. The bibtex reference will be updated accordingly.

TODO for relase 1.0:

  • Finish Numpy docs in all python files

  • Update documentation and examples

  • Enhance interface for interpretability tools

  • Add the Generalised version of RDST

  • Continue unit tests and code coverage/quality

Citations

Here are the code-related citations that were not made in the paper

[1]: The Scikit-learn development team, "Scikit-learn: Machine Learning in Python", Journal of Machine Learning Research 2011

[2]: The Numpy development team, "Array programming with NumPy", Nature 2020

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

convst-0.1.5.tar.gz (18.8 kB view hashes)

Uploaded Source

Built Distribution

convst-0.1.5-py3-none-any.whl (18.6 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page