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
Branches
Tags
1 merge request!87Corrected INFO log when training enroller
Pipeline #
This commit is part of merge request !87. Comments created here will be created in the context of that merge request.
......@@ -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", 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)
# perform training
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment