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

Fixed typo

parent 37dfb586
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
# load training data
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 of %d identities", sum(len(client_files) for client_files in train_files), len(train_features))
logger.info("- Enrollment: loading %d enroller training files of %d identities", sum(len(client_files) for client_files in train_files), len(train_files))
train_features = read_features(train_files, reader, True, allow_missing_files)
# 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