Skip to content

Commit 545149e

Browse files
committed
z_norm in test
1 parent 6417c61 commit 545149e

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

aeon/transformations/collection/self_supervised/tests/test_trilite.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -67,14 +67,14 @@ def test_trilite_use_masking(use_masking):
6767
not _check_soft_dependencies(["tensorflow"], severity="none"),
6868
reason="Tensorflow soft dependency unavailable.",
6969
)
70-
@pytest.mark.parametrize("znormalize_pos_neg", [True, False])
71-
def test_trilite_znormalize_pos_neg(znormalize_pos_neg):
70+
@pytest.mark.parametrize("z_normalize_pos_neg", [True, False])
71+
def test_trilite_z_normalize_pos_neg(z_normalize_pos_neg):
7272
"""Test TRILITE with possible znorm pos and neg setups."""
7373
X = np.random.random((100, 2, 5))
7474
with tempfile.TemporaryDirectory() as tmp:
7575

7676
ssl = TRILITE(
77-
znormalize_pos_neg=znormalize_pos_neg,
77+
z_normalize_pos_neg=z_normalize_pos_neg,
7878
backbone_network=DummyDeepNetwork(),
7979
latent_space_dim=2,
8080
n_epochs=3,

0 commit comments

Comments
 (0)