Skip to content

Commit

Permalink
DOC Minor changes to FastICA G function (scikit-learn#13116)
Browse files Browse the repository at this point in the history
  • Loading branch information
algo-circle authored and agramfort committed Feb 10, 2019
1 parent 0a1ee74 commit af842d3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sklearn/decomposition/fastica_.py
Original file line number Diff line number Diff line change
Expand Up @@ -406,7 +406,7 @@ class FastICA(BaseEstimator, TransformerMixin):
point. Example:
def my_g(x):
return x ** 3, 3 * x ** 2
return x ** 3, (3 * x ** 2).mean(axis=-1)
fun_args : dictionary, optional
Arguments to send to the functional form.
Expand Down

0 comments on commit af842d3

Please sign in to comment.