Skip to content
Snippets Groups Projects

Corrected INFO log when training enroller

Merged Manuel Günther requested to merge corrected-log into master
1 file
+ 1
1
Compare changes
  • Side-by-side
  • Inline
@@ -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
Loading