[FLINK] remove nWorker from API

This commit is contained in:
tqchen
2016-03-14 16:18:04 -07:00
parent 084ed6224d
commit 90f7220736
4 changed files with 6 additions and 8 deletions

View File

@@ -147,7 +147,7 @@ val trainData = MLUtils.readLibSVM(env, "/path/to/data/agaricus.txt.train")
Model Training can be done as follows
```scala
val xgboostModel = XGBoost.train(trainData, paramMap, round, nWorkers)
val xgboostModel = XGBoost.train(trainData, paramMap, round)
```