Skip to content

Commit c4453df

Browse files
IVC test fix attempt (#364)
* bigger ivc test data * iterations
1 parent b5e4d26 commit c4453df

File tree

1 file changed

+2
-2
lines changed
  • tsml_eval/estimators/clustering/consensus/tests

1 file changed

+2
-2
lines changed

tsml_eval/estimators/clustering/consensus/tests/test_ivc.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,11 +16,11 @@
1616
@pytest.mark.parametrize("init", ["plus", "random", "aligned"])
1717
def test_ivc_init_methods(init):
1818
"""Test IVC init methods."""
19-
X, y = make_example_3d_numpy(n_labels=4)
19+
X, y = make_example_3d_numpy(n_cases=30, n_timepoints=30, n_labels=4)
2020

2121
ivc = IterativeVotingClustering(
2222
n_clusters=4,
23-
max_iterations=10,
23+
max_iterations=20,
2424
init=init,
2525
)
2626
ivc.fit(X, y)

0 commit comments

Comments
 (0)