Skip to content

Commit 42916c5

Browse files
committed
Fix a few mistakes
1 parent 3b3e1e1 commit 42916c5

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

python/pyspark/mllib/recommendation.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -184,7 +184,7 @@ def load(cls, sc, path):
184184
class ALS(object):
185185
"""Alternating Least Squares matrix factorization
186186
187-
.. addedversion:: 1.1.0
187+
.. addedversion:: 0.9.0
188188
"""
189189

190190
@classmethod
@@ -206,7 +206,7 @@ def _prepare(cls, ratings):
206206
return ratings
207207

208208
@classmethod
209-
@since("1.0.0")
209+
@since("0.9.0")
210210
def train(cls, ratings, rank, iterations=5, lambda_=0.01, blocks=-1, nonnegative=False,
211211
seed=None):
212212
"""
@@ -221,7 +221,7 @@ def train(cls, ratings, rank, iterations=5, lambda_=0.01, blocks=-1, nonnegative
221221
return MatrixFactorizationModel(model)
222222

223223
@classmethod
224-
@since("1.0.0")
224+
@since("0.9.0")
225225
def trainImplicit(cls, ratings, rank, iterations=5, lambda_=0.01, blocks=-1, alpha=0.01,
226226
nonnegative=False, seed=None):
227227
"""

0 commit comments

Comments
 (0)