File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -270,7 +270,7 @@ def test_check_network_compile():
270270 Ridge (alpha = 10 , fit_intercept = False , tol = 0.1 ),
271271 DecisionTreeClassifier (max_depth = 10 ),
272272 AdaBoostRegressor (Ridge (alpha = 0.01 )),
273- TransformedTargetRegressor (Ridge (alpha = 25 ), StandardScaler ()),
273+ TransformedTargetRegressor (regressor = Ridge (alpha = 25 ), transformer = StandardScaler ()),
274274 MultiOutputRegressor (Ridge (alpha = 0.3 )),
275275 make_pipeline (StandardScaler (), Ridge (alpha = 0.2 )),
276276 KerasClassifier (_get_model_Sequential , input_shape = (1 ,)),
@@ -458,4 +458,4 @@ def test_make_regression_da():
458458 assert Xs .shape == (1000 , 10 )
459459 assert len (ys ) == 1000
460460 assert Xt .shape == (1000 , 10 )
461- assert len (yt ) == 1000
461+ assert len (yt ) == 1000
You can’t perform that action at this time.
0 commit comments