Removes extraneous log (#2186)
This log appears to fire every time I ask the python package to make a prediction. It's the only log that fires from XGBoost. When we're getting predictions on millions of items a day in production, this log seems out of place.
This commit is contained in:
parent
a837fa9620
commit
1ab8088a09
@ -261,7 +261,6 @@ XGB_DLL int XGDMatrixCreateFromCSREx(const size_t* indptr,
|
||||
mat.info.num_col = num_col;
|
||||
}
|
||||
mat.info.num_row = nindptr - 1;
|
||||
LOG(INFO) << "num_row=" << mat.info.num_row;
|
||||
mat.info.num_nonzero = mat.row_data_.size();
|
||||
*out = new std::shared_ptr<DMatrix>(DMatrix::Create(std::move(source)));
|
||||
API_END();
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user