You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Running this code doesn't work
`
model = xgboost_ray.train(
{
# This is important to be set correctly for the problem type (multi class in our case)
'objective': objective,
Hey @tfgstudios, thanks for raising this issue! Unfortunately xgboost-ray does not work on Windows. We require the fork method to be used for multiprocessing instead of spawn.
We will add this as an enhancement to provide support for this in the future!
Running this code doesn't work
`
model = xgboost_ray.train(
{
# This is important to be set correctly for the problem type (multi class in our case)
'objective': objective,
Tried to set
multiprocessing.set_start_method("spawn", force=True)
before, but it doesn't workThe text was updated successfully, but these errors were encountered: