Skip to content

Commit 66ca8c3

Browse files
committed
c h e c k s t y l e
1 parent 14f2243 commit 66ca8c3

File tree

1 file changed

+2
-1
lines changed
  • jvm-packages/xgboost4j/src/main/java/ml/dmlc/xgboost4j/java

1 file changed

+2
-1
lines changed

jvm-packages/xgboost4j/src/main/java/ml/dmlc/xgboost4j/java/Booster.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -456,7 +456,8 @@ public float[][] inplace_predict(float[] data,
456456

457457
float[][] rawPredicts = new float[1][];
458458
XGBoostJNI.checkCall(XGBoostJNI.XGBoosterInplacePredict(handle, data, num_rows, num_features,
459-
d_matrix_handle, missing, optionMask, treeLimit, rawPredicts)); // pass missing and treelimit here?
459+
d_matrix_handle, missing,
460+
optionMask, treeLimit, rawPredicts)); // pass missing and treelimit here?
460461

461462
// System.out.println("Booster.inplace_predict rawPredicts[0].length = " +
462463
// rawPredicts[0].length);

0 commit comments

Comments
 (0)