Skip to content

Commit 9e16ea7

Browse files
committed
BUG: remove leftout debug prints
Bad bad bad @GaelVaroquaux
1 parent 08d170d commit 9e16ea7

File tree

1 file changed

+0
-1
lines changed

1 file changed

+0
-1
lines changed

sklearn/linear_model/coordinate_descent.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -154,7 +154,6 @@ def fit(self, X, y, Xy=None, coef_init=None):
154154
"""
155155
X = atleast2d_or_csc(X, dtype=np.float64, order='F',
156156
copy=self.copy_X and self.fit_intercept)
157-
print X.strides, X.shape
158157
# From now on X can be touched inplace
159158
y = np.asarray(y, dtype=np.float64)
160159
# now all computation with X can be done inplace

0 commit comments

Comments
 (0)