8000 COSMIT pep8 · seckcoder/scikit-learn@070007f · GitHub
[go: up one dir, main page]

Skip to content

Commit 070007f

Browse files
committed
COSMIT pep8
1 parent 722fef6 commit 070007f

File tree

4 files changed

+1
-4
lines changed

4 files changed

+1
-4
lines changed

sklearn/decomposition/dict_learning.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1012,7 +1012,7 @@ class MiniBatchDictionaryLearning(BaseEstimator, SparseCodingMixin):
10121012
Lasso solution (linear_model.Lasso). Lars will be faster if
10131013
the estimated components are sparse.
10141014
1015-
transform_algorithm : {'lasso_lars', 'lasso_cd', 'lars', 'omp', \
1015+
transform_algorithm : {'lasso_lars', 'lasso_cd', 'lars', 'omp', \
10161016
'threshold'}
10171017
Algorithm used to transform the data.
10181018
lars: uses the least angle regression method (linear_model.lars_path)

sklearn/feature_selection/__init__.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,4 +16,3 @@
1616

1717
from .rfe import RFE
1818
from .rfe import RFECV
19-

sklearn/grid_search.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -401,4 +401,3 @@ def best_estimator(self):
401401
' Please use GridSearchCV.best_score_ instead.')
402402
def best_score(self):
403403
return self.best_score_
404-

sklearn/linear_model/tests/test_base.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,4 +49,3 @@ def test_linear_regression_sparse(random_state=0):
4949
ols.fit(X, y.ravel())
5050
assert_array_almost_equal(beta, ols.coef_ + ols.intercept_)
5151
assert_array_almost_equal(ols.residues_, 0)
52-

0 commit comments

Comments
 (0)
0