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

Put back some keyword parameters

parent fdc92a4a
Branches
Tags v2.5.0
2 merge requests!185Wrappers and aggregators,!180[dask] Preparing bob.bio.base for dask pipelines
Pipeline #39674 passed
...@@ -58,6 +58,8 @@ def wrap_bob_legacy( ...@@ -58,6 +58,8 @@ def wrap_bob_legacy(
bob_object, bob_object,
features_dir=os.path.join(dir_name, "extractor"), features_dir=os.path.join(dir_name, "extractor"),
model_path=dir_name, model_path=dir_name,
fit_extra_arguments=fit_extra_arguments,
transform_extra_arguments=transform_extra_arguments,
**kwargs **kwargs
) )
elif isinstance(bob_object, Algorithm): elif isinstance(bob_object, Algorithm):
...@@ -65,6 +67,8 @@ def wrap_bob_legacy( ...@@ -65,6 +67,8 @@ def wrap_bob_legacy(
bob_object, bob_object,
features_dir=os.path.join(dir_name, "algorithm"), features_dir=os.path.join(dir_name, "algorithm"),
model_path=dir_name, model_path=dir_name,
fit_extra_arguments=fit_extra_arguments,
transform_extra_arguments=transform_extra_arguments,
**kwargs **kwargs
) )
else: else:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment