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
Because when I train a model the dataset is very large. But when predict there are small dataset and predict more than 1000 times,But xgboost_ray is slower than origin xgboost in predict,How can I solve it
The text was updated successfully, but these errors were encountered:
I use the sklearn API and when I use model.predict(x) it still run 4 actors(I set n_jobs=4) and very slow. How can I use standard xgboost sklearn API to predict? Thank you very much
You can obtain the underlying model from the sklearn API by calling model.get_booster() to obtain an xgboost.Booster object you can use as in the link above, or use it to instantiate non-distributed XGBoost sklearn estimator.
Because when I train a model the dataset is very large. But when predict there are small dataset and predict more than 1000 times,But xgboost_ray is slower than origin xgboost in predict,How can I solve it
The text was updated successfully, but these errors were encountered: