Skip to content

Commit

Permalink
MNT change solver quantile regressor sklearn in test (#235)
Browse files Browse the repository at this point in the history
  • Loading branch information
mathurinm authored Mar 28, 2024
1 parent 14b7d41 commit e4650ec
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion skglm/experimental/tests/test_quantile_regression.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,8 @@ def test_PDCD_WS(quantile_level):
clf = QuantileRegressor(
quantile=quantile_level,
alpha=alpha/n_samples,
fit_intercept=False
fit_intercept=False,
solver='highs',
).fit(X, y)

np.testing.assert_allclose(w, clf.coef_, atol=1e-5)
Expand Down

0 comments on commit e4650ec

Please sign in to comment.