How can I use XGBOOST https://github.com/dmlc/xgboost/ library in c++? I have founded Python and Java API, but I can\'t found API for c++
I ended up using the C API, see below an example:
// create the train data int cols=3,rows=5; float train[rows][cols]; for (int i=0;i