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

Merge branch 'issue-22' into 'master'

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

Closes #22

See merge request !14
parents cbb21ad1 6630594d
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