Scalable, portable gradient boosting library for machine learning
Scalable, Portable and Distributed Gradient Boosting Library
xgboost$ python3 -c "import xgboost as xgb; dtrain = xgb.DMatrix('train.libsvm'); params = {'max_depth': 3}; xgb.train(params, dtrain, num_boost_round=10)"$ python3 -c "import xgboost as xgb; dtest = xgb.DMatrix('test.libsvm'); bst = xgb.Booster(model_file='model.bin'); predictions = bst.predict(dtest)"$ xgboost train.conf