-
Notifications
You must be signed in to change notification settings - Fork 3.8k
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
what is the distribution communication framework in lightGBM? #4550
Comments
Unlike Linking in case you aren't aware...last year, XGBoost decided to use a similar approach, pulling More DetailsThe core communication code can be found here:
Notice there that LightGBM by default uses TCP sockets directly for communication, but it can also be compiled with MPI features enabled and run as an MPI application. Those core communication routines are used to implement Data Parallel, Feature Parallel, and Voting Parallel training.
Those features are then exposed in several interfaces (including running the LightGBM CLI, Dask, or Spark). See https://lightgbm.readthedocs.io/en/latest/Parallel-Learning-Guide.html#integrations for a more complete list. |
This issue has been automatically closed because it has been awaiting a response for too long. When you have time to to work with the maintainers to resolve this issue, please post a new comment and it will be re-opened. If the issue has been locked for editing by the time you return to it, please open a new issue and reference this one. Thank you for taking the time to improve LightGBM! |
This issue has been automatically locked since there has not been any recent activity since it was closed. To start a new related discussion, open a new issue at https://github.com/microsoft/LightGBM/issues including a reference to this. |
Is there a distribution distribution communication framework in LightGBM like rabit in xgboost?
The text was updated successfully, but these errors were encountered: