Skip to content
Snippets Groups Projects
Commit 2cc51060 authored by Pavel KORSHUNOV's avatar Pavel KORSHUNOV
Browse files

Corrections of small issues for speech pad

parent bc6bc98a
No related branches found
No related tags found
No related merge requests found
Pipeline #
...@@ -50,8 +50,8 @@ class GmmAlgorithm (Algorithm): ...@@ -50,8 +50,8 @@ class GmmAlgorithm (Algorithm):
INIT_SEED = INIT_SEED, INIT_SEED = INIT_SEED,
# parameters of detection pipeline # parameters of detection pipeline
performs_projection = True, performs_projection = True,
requires_projector_training = True, requires_projector_training = False,
use_projected_features_for_enrollment = True, use_projected_features_for_enrollment = False,
multiple_model_scoring = None, multiple_model_scoring = None,
) )
# copy parameters # copy parameters
......
...@@ -48,7 +48,7 @@ class ASVspoof2017PadDatabase(PadDatabase): ...@@ -48,7 +48,7 @@ class ASVspoof2017PadDatabase(PadDatabase):
if names is None: if names is None:
return 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): if isinstance(names, str):
return mapping.get(names) return mapping.get(names)
return [mapping[g] for g in names] return [mapping[g] for g in names]
......
...@@ -12,7 +12,6 @@ eggs = bob.pad.voice ...@@ -12,7 +12,6 @@ eggs = bob.pad.voice
bob.pad.base bob.pad.base
bob.db.base bob.db.base
bob.measure bob.measure
bob.ap
bob.db.asvspoof bob.db.asvspoof
bob.db.asvspoof2017 bob.db.asvspoof2017
bob.db.avspoof bob.db.avspoof
...@@ -38,7 +37,6 @@ develop = src/bob.bio.spear ...@@ -38,7 +37,6 @@ develop = src/bob.bio.spear
src/bob.pad.base src/bob.pad.base
src/bob.bio.base src/bob.bio.base
src/bob.db.base src/bob.db.base
src/bob.ap
src/bob.extension src/bob.extension
src/bob.learn.tensorflow src/bob.learn.tensorflow
src/bob.bio.db src/bob.bio.db
...@@ -58,7 +56,6 @@ bob.db.asvspoof = git git@gitlab.idiap.ch:bob/bob.db.asvspoof.git ...@@ -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.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.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.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.db.voicepa = git git@gitlab.idiap.ch:bob/bob.db.voicepa.git
bob.extension = git git@gitlab.idiap.ch:bob/bob.extension.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 bob.learn.tensorflow = git branch=epoch git@gitlab.idiap.ch:bob/bob.learn.tensorflow.git
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment