Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/unixjunkie/orxgboost
Gradient boosting for OCaml using the R xgboost package under the carpet
https://github.com/unixjunkie/orxgboost
classification gradient-boosted-trees gradient-boosting machine-learning ocaml-library r regression xgboost
Last synced: about 1 month ago
JSON representation
Gradient boosting for OCaml using the R xgboost package under the carpet
- Host: GitHub
- URL: https://github.com/unixjunkie/orxgboost
- Owner: UnixJunkie
- License: other
- Created: 2018-03-12T00:48:20.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2022-06-15T12:30:04.000Z (over 2 years ago)
- Last Synced: 2023-10-20T23:36:35.338Z (about 1 year ago)
- Topics: classification, gradient-boosted-trees, gradient-boosting, machine-learning, ocaml-library, r, regression, xgboost
- Language: OCaml
- Size: 2.17 MB
- Stars: 9
- Watchers: 4
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# orxgboost
Gradient boosting for OCaml using the R xgboost package under the carpethttps://cran.r-project.org/web/packages/xgboost/index.html
https://cran.r-project.org/web/packages/xgboost/xgboost.pdf
Please look into the R documentation for the corresponding package for
details:```
R
install.packages('xgboost', dependencies = TRUE, repos='http://cran.r-project.org')
library(xgboost)
help(xgboost)
````