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.
2 parents dd658f8 + 8524cf7 commit 7c9fbe1Copy full SHA for 7c9fbe1
skglm/solvers/fista.py
@@ -38,7 +38,7 @@ def solve(self, X, y, datafit, penalty, w_init=None, Xw_init=None):
38
p_objs_out = []
39
n_samples, n_features = X.shape
40
all_features = np.arange(n_features)
41
- t_new = 1
+ t_new = 1.
42
43
w = w_init.copy() if w_init is not None else np.zeros(n_features)
44
z = w_init.copy() if w_init is not None else np.zeros(n_features)
0 commit comments