-
Notifications
You must be signed in to change notification settings - Fork 34
New issue
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
predict function doesn't return the correct predictions with num_actors >1 #231
Comments
I tried running the following code locally:
and got the same results. will try in a distributed setting, and with the higgs dataset. |
I can reproduce this |
As a workaround, you can either use the new Ray AIR API, or switch to |
it works by adding |
thanks! |
Let's keep this open as this is still a bug :) |
Hi, when using the following code snippet to do xgboost training, I noticed that the results that the
predict
function returns are different when I set the number of actors to different values. In my case, I need to set the number of actors to 1 in thepredict
function in order to get the correct predictions.The returned predictions for num_actors=1:
The returned predictions for num_actors=10:
Is this a bug or am I setting the number of actors wrong? Thanks for your review!
The text was updated successfully, but these errors were encountered: