diff --git a/bob/bio/gmm/test/dummy/extractor.py b/bob/bio/gmm/test/dummy/extractor.py index 2c585579747097d8634d2029158431e7060a9654..76e8b519b14d27f0421903305fb88dfbc399cdc8 100644 --- a/bob/bio/gmm/test/dummy/extractor.py +++ b/bob/bio/gmm/test/dummy/extractor.py @@ -3,7 +3,7 @@ import bob.io.base from bob.bio.base.extractor import Extractor -_data = [0., 1., 2., 3., 4.] +_data = [10., 11., 12., 13., 14.] class DummyExtractor (Extractor): def __init__(self): diff --git a/bob/bio/gmm/test/test_scripts.py b/bob/bio/gmm/test/test_scripts.py index 34adb9cdffa2a723be49990fd003a3ba01b078a5..d2c27af6234c7e12a359d128987f62c3a89632a9 100644 --- a/bob/bio/gmm/test/test_scripts.py +++ b/bob/bio/gmm/test/test_scripts.py @@ -64,7 +64,7 @@ def test_gmm_sequential(): parameters = [ '-d', 'dummy', '-p', 'dummy', - '-e', 'dummy', + '-e', 'dummy2d', '-a', 'bob.bio.gmm.algorithm.GMM(2, 2, 2)', '--zt-norm', '-s', 'test_gmm_sequential', @@ -85,7 +85,7 @@ def test_gmm_parallel(): parameters = [ '-d', 'dummy', '-p', 'dummy', - '-e', 'dummy', + '-e', 'dummy2d', '-a', 'bob.bio.gmm.algorithm.GMM(2, 2, 2)', '--import', 'bob.bio.gmm', 'bob.io.image', '-g', 'bob.bio.base.grid.Grid(grid = "local", number_of_parallel_processes = 2, scheduler_sleep_time = 0.1)', '-G', test_database, '--run-local-scheduler', '--stop-on-failure', '--clean-intermediate', @@ -106,7 +106,7 @@ def test_isv_sequential(): parameters = [ '-d', 'dummy', '-p', 'dummy', - '-e', 'dummy', + '-e', 'dummy2d', '-a', 'bob.bio.gmm.algorithm.ISV(10, number_of_gaussians=2, kmeans_training_iterations=2, gmm_training_iterations=2, isv_training_iterations=2)', '--zt-norm', '-s', 'test_isv_sequential', @@ -127,7 +127,7 @@ def test_isv_parallel(): parameters = [ '-d', 'dummy', '-p', 'dummy', - '-e', 'dummy', + '-e', 'dummy2d', '-a', 'bob.bio.gmm.algorithm.ISV(10, number_of_gaussians=2, kmeans_training_iterations=2, gmm_training_iterations=2, isv_training_iterations=2)', '--import', 'bob.bio.gmm', 'bob.io.image', '-g', 'bob.bio.base.grid.Grid(grid = "local", number_of_parallel_processes = 2, scheduler_sleep_time = 0.1)', '-G', test_database, '--run-local-scheduler', '--stop-on-failure', '--clean-intermediate', @@ -148,7 +148,7 @@ def test_ivector_sequential(): parameters = [ '-d', 'dummy', '-p', 'dummy', - '-e', 'dummy', + '-e', 'dummy2d', '-a', 'bob.bio.gmm.algorithm.IVector(10, number_of_gaussians=2, kmeans_training_iterations=2, gmm_training_iterations=2, tv_training_iterations=2)', '--zt-norm', '-s', 'test_ivector_sequential', @@ -169,7 +169,7 @@ def test_ivector_parallel(): parameters = [ '-d', 'dummy', '-p', 'dummy', - '-e', 'dummy', + '-e', 'dummy2d', '-a', 'bob.bio.gmm.algorithm.IVector(10, number_of_gaussians=2, kmeans_training_iterations=2, gmm_training_iterations=2, tv_training_iterations=2)', '--import', 'bob.bio.gmm', 'bob.io.image', '-g', 'bob.bio.base.grid.Grid(grid = "local", number_of_parallel_processes = 2, scheduler_sleep_time = 0.1)', '-G', test_database, '--run-local-scheduler', '--stop-on-failure', '--clean-intermediate', diff --git a/setup.py b/setup.py index b56fe939709b0d937a2bc7d2ce62c7e5c1580576..c03d3d5bc0c5c66576fea80a65f31a3dd5ae4bf1 100644 --- a/setup.py +++ b/setup.py @@ -115,7 +115,7 @@ setup( ], 'bob.bio.extractor': [ - 'dummy = bob.bio.gmm.test.dummy.extractor:extractor', # for test purposes only + 'dummy2d = bob.bio.gmm.test.dummy.extractor:extractor', # for test purposes only ], 'bob.bio.algorithm': [