Skip to content

Commit

Permalink
Single Parameter per line is style guide
Browse files Browse the repository at this point in the history
  • Loading branch information
Helw150 committed Oct 2, 2018
1 parent b3675f2 commit 82799b8
Showing 1 changed file with 11 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -51,8 +51,17 @@ object XGBoost {
.mapValues(_.toString.asInstanceOf[AnyRef])
.asJava

val xgboostResults = JXGBoost.trainWithResults(dtrain.jDMatrix, jFilteredParams, round, jWatches,
metrics, obj, evals, earlyStoppingRound, jBooster)
val xgboostResults = JXGBoost.trainWithResults(
dtrain.jDMatrix,
jFilteredParams,
round,
jWatches,
metrics,
obj,
evals,
earlyStoppingRound,
jBooster
)
xgboostResults
}

Expand Down

0 comments on commit 82799b8

Please sign in to comment.