Skip to content
Snippets Groups Projects
Commit 6630594d authored by Tiago de Freitas Pereira's avatar Tiago de Freitas Pereira
Browse files

Fixing issue #22. Removing the keyword argument allow_missing_files. don't ask...

Fixing issue #22. Removing the keyword argument allow_missing_files. don't ask why this passed before.
parent cbb21ad1
No related branches found
No related tags found
1 merge request!14Fixing issue #22. Removing the keyword argument allow_missing_files. don't ask…
Pipeline #
......@@ -314,7 +314,7 @@ def gmm_project(algorithm, extractor, indices, force=False, allow_missing_files
if not utils.check_file(projected_file, force):
if len(utils.filter_missing_files([feature_file], split_by_client=False, allow_missing_files=allow_missing_files)) > 0:
# load feature
feature = read_feature(extractor, feature_file, allow_missing_files=allow_missing_files)
feature = read_feature(extractor, feature_file)
# project feature
projected = algorithm.project_ubm(feature)
# write it
......
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