Skip to content
Snippets Groups Projects
Commit 37dfb586 authored by Manuel Günther's avatar Manuel Günther
Browse files

Corrected INFO log when training enroller

parent afe8a16b
No related branches found
No related tags found
1 merge request!87Corrected INFO log when training enroller
Pipeline #
...@@ -191,7 +191,7 @@ def train_enroller(algorithm, extractor, allow_missing_files = False, force = Fa ...@@ -191,7 +191,7 @@ def train_enroller(algorithm, extractor, allow_missing_files = False, force = Fa
# load training data # load training data
train_files = fs.training_list('projected' if algorithm.use_projected_features_for_enrollment else 'extracted', 'train_enroller', arrange_by_client = True) train_files = fs.training_list('projected' if algorithm.use_projected_features_for_enrollment else 'extracted', 'train_enroller', arrange_by_client = True)
logger.info("- Enrollment: loading %d enroller training files", len(train_files)) logger.info("- Enrollment: loading %d enroller training files of %d identities", sum(len(client_files) for client_files in train_files), len(train_features))
train_features = read_features(train_files, reader, True, allow_missing_files) train_features = read_features(train_files, reader, True, allow_missing_files)
# perform training # perform training
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment