Unverified Commit 1e3b57d4 authored by Guolin Ke's avatar Guolin Ke Committed by GitHub
Browse files

[R] fix warning at prediction (#1323)

* Update lgb.Booster.R

* Update lgb.Booster.R
parent ebf962fc
......@@ -410,6 +410,7 @@ Booster <- R6Class(
num_iteration = NULL,
rawscore = FALSE,
predleaf = FALSE,
predcontrib = FALSE,
header = FALSE,
reshape = FALSE, ...) {
......@@ -420,7 +421,7 @@ Booster <- R6Class(
# Predict on new data
predictor <- Predictor$new(private$handle, ...)
predictor$predict(data, num_iteration, rawscore, predleaf, header, reshape)
predictor$predict(data, num_iteration, rawscore, predleaf, predcontrib, header, reshape)
},
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment