A Python 3 library making time series data mining tasks, utilizing matrix profile algorithms, accessible to everyone.
363
stars
62
forks
source link
AttributeError: module 'matrixprofile' has no attribute 'compute' #94
Closed
rcyost closed 2 years ago
Describe the bug I am trying to follow along with this tutorial: https://matrixprofile.docs.matrixprofile.org/examples/ECG_Annotation_Vectors.html
When I try to run this code:
I immediately get this error:
'''
AttributeError Traceback (most recent call last) c:\Users\yosty\Desktop\Desktop_Folder\14 - git\matrix_profile\fed_mp.py in
20 window_size = 150
21
----> 22 profile = mp.compute(ts, windows=window_size)
23 profile = mp.discover.motifs(profile, k=1)
24 figures = mp.visualize(profile)
AttributeError: module 'matrixprofile' has no attribute 'compute' '''
To Reproduce Steps to reproduce the behavior:
Desktop (please complete the following information):
Additional context Just trying to follow along with the tutorial