diff --git a/bob/bio/base/tools/scoring.py b/bob/bio/base/tools/scoring.py index 136867e17afa976bb11cebf7a0eabf582f761928..b2a537f098812b53f2bacd40066eaef36afe0f0f 100644 --- a/bob/bio/base/tools/scoring.py +++ b/bob/bio/base/tools/scoring.py @@ -160,7 +160,7 @@ def _scores_c(algorithm, t_model_ids, group, force): # probe files: probe_objects = fs.probe_objects(group) - probe_files = fs.get_paths(probe_objects, 'projected' if algorithm.performs_projection else 'features') + probe_files = fs.get_paths(probe_objects, 'projected' if algorithm.performs_projection else 'extracted') logger.info("- Scoring: computing score matrix C for group '%s'", group) @@ -182,7 +182,7 @@ def _scores_d(algorithm, t_model_ids, group, force): # probe files: z_probe_objects = fs.z_probe_objects(group) - z_probe_files = fs.get_paths(z_probe_objects, 'projected' if algorithm.performs_projection else 'features') + z_probe_files = fs.get_paths(z_probe_objects, 'projected' if algorithm.performs_projection else 'extracted') logger.info("- Scoring: computing score matrix D for group '%s'", group)