Skip to content

Commit 1b743cb

Browse files
authored
Fix UCR_UEA_datasets (#517)
* Empty commit * Fix list_univariate_datasets * Fix baseline_accuracy * Minor change * Remove singleTrainTest.csv from package_data in setup.py * Minor changes * Add singleTrainTest.csv in the list of the package data files in setup.py
1 parent 6105b3c commit 1b743cb

File tree

4 files changed

+109
-13
lines changed

4 files changed

+109
-13
lines changed

docs/user_guide/matrix-profile.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ The Matrix Profile, :math:`MP`, is a new time series that can be calculated base
1313

1414

1515
Implementation
16-
---------------
16+
--------------
1717

1818
The Matrix Profile implementation provided in ``tslearn`` uses numpy or wraps around STUMPY [2]_. Three different versions are available:
1919

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@
3333
],
3434
include_dirs=[numpy.get_include()],
3535
packages=find_packages(),
36-
package_data={"tslearn": [".cached_datasets/Trace.npz"]},
36+
package_data={"tslearn": [".cached_datasets/singleTrainTest.csv", ".cached_datasets/Trace.npz"]},
3737
install_requires=['numpy', 'scipy', 'scikit-learn', 'numba', 'joblib'],
3838
extras_require={'tests': ['pytest', 'torch'], 'pytorch': ['torch']},
3939
version=VERSION,

0 commit comments

Comments
 (0)