Skip to content

Commit

Permalink
c h e c k s t y l e
Browse files Browse the repository at this point in the history
  • Loading branch information
yoquinjo committed Mar 23, 2023
1 parent 14f2243 commit 66ca8c3
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -456,7 +456,8 @@ public float[][] inplace_predict(float[] data,

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

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

0 comments on commit 66ca8c3

Please sign in to comment.