diff --git a/bob/pad/voice/algorithm/gmm_algorithm.py b/bob/pad/voice/algorithm/gmm_algorithm.py index 21faf33479e7102481a3b60919332f3bb0b64f2e..6beb74190cfe58a15487fe1ec4449739fe05824f 100644 --- a/bob/pad/voice/algorithm/gmm_algorithm.py +++ b/bob/pad/voice/algorithm/gmm_algorithm.py @@ -50,8 +50,8 @@ class GmmAlgorithm (Algorithm): INIT_SEED = INIT_SEED, # parameters of detection pipeline performs_projection = True, - requires_projector_training = True, - use_projected_features_for_enrollment = True, + requires_projector_training = False, + use_projected_features_for_enrollment = False, multiple_model_scoring = None, ) # copy parameters diff --git a/bob/pad/voice/database/asvspoof2017.py b/bob/pad/voice/database/asvspoof2017.py index b214d161aa40b7e89ce6b979c3beb718886b05c1..3b54dbf015901af4f0de0a1e49abf1f77914abf9 100644 --- a/bob/pad/voice/database/asvspoof2017.py +++ b/bob/pad/voice/database/asvspoof2017.py @@ -48,7 +48,7 @@ class ASVspoof2017PadDatabase(PadDatabase): if names is None: return None - mapping = dict(zip(low_level_names, high_level_names)) + mapping = dict(zip(high_level_names, low_level_names)) if isinstance(names, str): return mapping.get(names) return [mapping[g] for g in names] diff --git a/develop.cfg b/develop.cfg index 70f25bcf061027a6cb5c19e1517af47f8a83dbc4..a23a7c3b474f0360ebe0f39c294135417d5cedc4 100644 --- a/develop.cfg +++ b/develop.cfg @@ -12,7 +12,6 @@ eggs = bob.pad.voice bob.pad.base bob.db.base bob.measure - bob.ap bob.db.asvspoof bob.db.asvspoof2017 bob.db.avspoof @@ -38,7 +37,6 @@ develop = src/bob.bio.spear src/bob.pad.base src/bob.bio.base src/bob.db.base - src/bob.ap src/bob.extension src/bob.learn.tensorflow src/bob.bio.db @@ -58,7 +56,6 @@ bob.db.asvspoof = git git@gitlab.idiap.ch:bob/bob.db.asvspoof.git bob.db.base = git git@gitlab.idiap.ch:bob/bob.db.base.git bob.bio.base = git git@gitlab.idiap.ch:bob/bob.bio.base.git bob.pad.base = git git@gitlab.idiap.ch:bob/bob.pad.base.git -bob.ap = git git@gitlab.idiap.ch:bob/bob.ap.git bob.db.voicepa = git git@gitlab.idiap.ch:bob/bob.db.voicepa.git bob.extension = git git@gitlab.idiap.ch:bob/bob.extension.git bob.learn.tensorflow = git branch=epoch git@gitlab.idiap.ch:bob/bob.learn.tensorflow.git