Skip to content

Commit

Permalink
fixed order
Browse files Browse the repository at this point in the history
  • Loading branch information
BalzaniEdoardo committed Oct 3, 2024
1 parent 21ad02f commit bbbfe91
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 @@ -60,7 +60,7 @@ def test_sklearn_transformer_pipeline_cv_multiprocess(
X, y, model, _, _ = poissonGLM_model_instantiation
bas = basis.TransformerBasis(bas)
pipe = pipeline.Pipeline([("basis", bas), ("fit", model)])
param_grid = dict(basis__n_basis_funcs=(3, 5, 10))
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')
gridsearch.fit(X[:, : bas._n_input_dimensionality] ** 2, y)

Expand Down

0 comments on commit bbbfe91

Please sign in to comment.