You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently, it is very hard to retrieve the raw matrix profile values from the Pan Matrix Profile object and the PAN_ property only returns transformed (i.e., normalized, contrasted, binarized) matrix profiles. One solution is to add a P_ property that will return a list of matrix profiles ordered by BFS:
@property
def P_(self):
P = []
for i, idx in enumerate(pmp._bfs_indices):
P.append(self._PAN[idx][ : len(self._T) - self._M[i] + 1])
return P
Something like this might work...
The text was updated successfully, but these errors were encountered:
Currently, it is very hard to retrieve the raw matrix profile values from the Pan Matrix Profile object and the
PAN_
property only returns transformed (i.e., normalized, contrasted, binarized) matrix profiles. One solution is to add aP_
property that will return a list of matrix profiles ordered by BFS:Something like this might work...
The text was updated successfully, but these errors were encountered: