Skip to content

Latest commit

 

History

History
15 lines (12 loc) · 351 Bytes

README.md

File metadata and controls

15 lines (12 loc) · 351 Bytes

Python ParDTW

This respository contains a python wrapper for cuda-accelerated ParDTW.

In order to use this repository, install it using

pip install .

Then, import the module and run the code

from pypardtw import pardtw
pardtw.pardtw(seq1, seq2, subsequence = False)

Please look at the Example.ipynb notebook for details on usage.