Skip to content

Commit

Permalink
fix: change dimensions order in ts_to_3d_matrix to (3, n, n)
Browse files Browse the repository at this point in the history
  • Loading branch information
Lopa10ko committed Jul 8, 2024
1 parent 632f73b commit 61a034f
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -32,9 +32,9 @@ def test_ts_to_recurrence_matrix(ts_transformer, params):

def test_ts_to_3d_recurrence_matrix(ts_transformer, params):
matrix = ts_transformer.ts_to_3d_recurrence_matrix()
assert matrix.shape[0] == matrix.shape[1]
assert matrix.shape[0] == params['time_series'].shape[0]
assert matrix.shape[2] == 3
assert matrix.shape[0] == 3
assert matrix.shape[1] == matrix.shape[2]
assert matrix.shape[1] == params['time_series'].shape[0]


def test_colorise(ts_transformer, params):
Expand Down

0 comments on commit 61a034f

Please sign in to comment.