diff options
author | William PC <w_calandrini[at]hotmail[dot]com> | 2022-12-02 13:41:37 +0700 |
---|---|---|
committer | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2022-12-03 09:09:22 +0700 |
commit | 7f92ac98865f7ee57fa70b9eb5491320055f1992 (patch) | |
tree | 158e31f18e4cee6689b6edccf4eb92f5968865e5 /libraries/xgboost/README | |
parent | b73f422f7358caa0d4abc88de2871f439df9d2fb (diff) |
libraries/xgboost: Added (gradient boosting library).
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
Diffstat (limited to 'libraries/xgboost/README')
-rw-r--r-- | libraries/xgboost/README | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/libraries/xgboost/README b/libraries/xgboost/README new file mode 100644 index 000000000000..2fd90ab1e35d --- /dev/null +++ b/libraries/xgboost/README @@ -0,0 +1,17 @@ + XGBoost is an optimized distributed gradient boosting library +designed to be highly efficient, flexible and portable. It implements +machine learning algorithms under the Gradient Boosting framework. +XGBoost provides a parallel tree boosting (also known as GBDT, GBM) +that solve many data science problems in a fast and accurate way. +The same code runs on major distributed environment (Hadoop, SGE, +MPI) and can solve problems beyond billions of examples. + + + By default the package is build without parellization, if you want +to enable OpenMP set the environment variable OMP=yes. + For enabling MPI set the environment variable MPI=yes, this requires +a MPI implementation, use mpich (openmpi isn't working). + To enable GPU support set CUDA=yes, this requires the CUDA toolkit. + To install the Python module set PYTHON=yes (note: python3 only). + If you want to run the tests set the environment variable TESTS=yes, +this requires gtest. |