From d74eb16f3176cf3ce21a38d48027ebca290b074e Mon Sep 17 00:00:00 2001 From: Mikko Kotila Date: Mon, 22 Apr 2024 13:00:14 +0300 Subject: [PATCH] replace quantum with uniform in tests --- tests/commands/test_templates.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/commands/test_templates.py b/tests/commands/test_templates.py index f1339f7..2f6eba8 100644 --- a/tests/commands/test_templates.py +++ b/tests/commands/test_templates.py @@ -40,7 +40,7 @@ def test_templates(): x, y = talos.templates.datasets.cervical_cancer() x, y = talos.templates.datasets.titanic() - talos.templates.pipelines.breast_cancer(random_method='quantum') + talos.templates.pipelines.breast_cancer(random_method='uniform_mersenne') talos.templates.pipelines.cervical_cancer(random_method='sobol') talos.templates.pipelines.iris(random_method='uniform_crypto') talos.templates.pipelines.titanic(random_method='korobov_matrix')