We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 59501c6 commit bd8d9fdCopy full SHA for bd8d9fd
sdcflows/interfaces/bspline.py
@@ -208,7 +208,7 @@ def _run_interface(self, runtime):
208
)
209
210
# Fit the model
211
- model = lm.Ridge(alpha=self.inputs.ridge_alpha, fit_intercept=False)
+ model = lm.Ridge(alpha=self.inputs.ridge_alpha, fit_intercept=False, solver='lsqr')
212
for attempt in range(3):
213
model.fit(colmat[mask.reshape(-1), :], data[mask])
214
extreme = np.abs(model.coef_).max()
0 commit comments