Skip to content

Commit

Permalink
fix docstring for pipeline score func.
Browse files Browse the repository at this point in the history
  • Loading branch information
amueller committed Dec 30, 2014
1 parent 4c16329 commit a548303
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions sklearn/pipeline.py
Original file line number Diff line number Diff line change
Expand Up @@ -276,11 +276,11 @@ def score(self, X, y=None):
Parameters
----------
X : iterable
Training data. Must fulfil input requirements of first step of the
Data to score. Must fulfil input requirements of first step of the
pipeline.
y : iterable, default=None
Training targets. Must fulfil label requirements for all steps of
Targets used for scoring. Must fulfil label requirements for all steps of
the pipeline.
"""
Xt = X
Expand Down

0 comments on commit a548303

Please sign in to comment.