Skip to content

Commit

Permalink
removed unused param
Browse files Browse the repository at this point in the history
  • Loading branch information
BalzaniEdoardo committed Oct 4, 2024
1 parent 94cfbea commit 8343bcd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/test_pipeline.py
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ def test_sklearn_transformer_pipeline_cv_multiprocess(
param_grid = dict(basis__n_basis_funcs=(4, 5, 10))
gridsearch = GridSearchCV(pipe, param_grid=param_grid, cv=3, n_jobs=3, error_score='raise')
# use threading instead of fork (this avoids conflicts with jax)
with joblib.parallel_backend("threading", n_jobs=3):
with joblib.parallel_backend("threading"):
gridsearch.fit(X[:, : bas._n_input_dimensionality] ** 2, y)


Expand Down

0 comments on commit 8343bcd

Please sign in to comment.