Skip to content

Commit

Permalink
DOC : really fix alpha docstring in dict learning
Browse files Browse the repository at this point in the history
  • Loading branch information
agramfort committed May 20, 2014
1 parent 4a04b3f commit 645863e
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions sklearn/decomposition/dict_learning.py
Original file line number Diff line number Diff line change
Expand Up @@ -510,7 +510,7 @@ def dict_learning_online(X, n_components=2, alpha=1, n_iter=100,
n_components : int,
Number of dictionary atoms to extract.
alpha : float,
alpha : int | float,
Sparsity controlling parameter.
n_iter : int,
Expand Down Expand Up @@ -835,7 +835,7 @@ class DictionaryLearning(BaseEstimator, SparseCodingMixin):
n_components : int,
number of dictionary elements to extract
alpha : float,
alpha : int | float,
sparsity controlling parameter
max_iter : int,
Expand Down Expand Up @@ -988,7 +988,7 @@ class MiniBatchDictionaryLearning(BaseEstimator, SparseCodingMixin):
n_components : int,
number of dictionary elements to extract
alpha : float,
alpha : int | float,
sparsity controlling parameter
n_iter : int,
Expand Down

0 comments on commit 645863e

Please sign in to comment.