We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hi, I was looking through the source code, and I noticed this in https://github.com/ray-project/xgboost_ray/blob/master/xgboost_ray/matrix.py
try: from xgboost.core import QuantileDmatrix QUANTILE_AVAILABLE = True except ImportError: QuantileDmatrix = object QUANTILE_AVAILABLE = False
QUANTILE_AVAILABLE is used in https://github.com/ray-project/xgboost_ray/blob/master/xgboost_ray/main.py to enable the use of QuantileDMatrix instead of DMatrix, but this is always set to be False:
QUANTILE_AVAILABLE
QuantileDMatrix
DMatrix
import xgboost_ray.matrix print(xgboost_ray.matrix.QUANTILE_AVAILABLE) # always prints "False"
I believe the error is one of capitalization; QuantileDmatrix should be changed to QuantileDMatrix.
QuantileDmatrix
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Hi, I was looking through the source code, and I noticed this in https://github.com/ray-project/xgboost_ray/blob/master/xgboost_ray/matrix.py
QUANTILE_AVAILABLE
is used in https://github.com/ray-project/xgboost_ray/blob/master/xgboost_ray/main.py to enable the use ofQuantileDMatrix
instead ofDMatrix
, but this is always set to be False:I believe the error is one of capitalization;
QuantileDmatrix
should be changed toQuantileDMatrix
.The text was updated successfully, but these errors were encountered: