Skip to content
Snippets Groups Projects
Commit c427c3c2 authored by Amir MOHAMMADI's avatar Amir MOHAMMADI
Browse files

Merge branch 'corrected-log' into 'master'

Corrected INFO log when training enroller

See merge request !87
parents afe8a16b 8f914dde
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_files))
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