ray-project / xgboost_ray

Distributed XGBoost on Ray
Apache License 2.0
143 stars 34 forks source link

Fix `num_threads` param, check for `n_jobs` param #118

Closed Yard1 closed 3 years ago

Yard1 commented 3 years ago

According to xgboost source code, num_threads is not a valid parameter, and n_jobs is an alias of nthread. This PR fixes the usage of the former and adds a missing check for latter.