Skip to content

Commit

Permalink
[FLINK-2860] [ml] [docs] Remove an undefined argument in FlinkML docu…
Browse files Browse the repository at this point in the history
…mentation

This closes apache#1310.
  • Loading branch information
chiwanpark authored and tillrohrmann committed Nov 20, 2015
1 parent a7111cd commit 0943303
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/libs/ml/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ val mlr = MultipleLinearRegression()
.setIterations(100)
.setConvergenceThreshold(0.001)

mlr.fit(trainingData, parameters)
mlr.fit(trainingData)

// The fitted model can now be used to make predictions
val predictions: DataSet[LabeledVector] = mlr.predict(testingData)
Expand Down

0 comments on commit 0943303

Please sign in to comment.