Skip to content

acmiyaguchi/simple-fast-python

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

implementation of SiMPle-Fast in Python

An implementation of matrix profiles in Python using numpy.

quickstart

# generate testing data for the directories, ensure that you have octave installed
octave-cli .\tests\resources\reference_simple_fast_self.m
octave-cli .\tests\resources\reference_simple_fast_ab.m

rscript tests/test_tsmp.R
pytest tests

uploading the package

Tag a commit on GitHub and the actions should take care of the rest. To manually upload via twine:

pipx install twine
python -m build
# upload to testpypi
twine upload --repository testpypi dist/*
twine upload dist/*

references