File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
aeon/transformations/collection/self_supervised/tests Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -67,14 +67,14 @@ def test_trilite_use_masking(use_masking):
67
67
not _check_soft_dependencies (["tensorflow" ], severity = "none" ),
68
68
reason = "Tensorflow soft dependency unavailable." ,
69
69
)
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 ):
72
72
"""Test TRILITE with possible znorm pos and neg setups."""
73
73
X = np .random .random ((100 , 2 , 5 ))
74
74
with tempfile .TemporaryDirectory () as tmp :
75
75
76
76
ssl = TRILITE (
77
- znormalize_pos_neg = znormalize_pos_neg ,
77
+ z_normalize_pos_neg = z_normalize_pos_neg ,
78
78
backbone_network = DummyDeepNetwork (),
79
79
latent_space_dim = 2 ,
80
80
n_epochs = 3 ,
You can’t perform that action at this time.
0 commit comments