From 0febb1a4438036a3103f9031e64704d3afc9eccc Mon Sep 17 00:00:00 2001 From: tqchen Date: Fri, 7 Feb 2014 22:41:32 -0800 Subject: [PATCH] adapt tree booster --- booster/xgboost.cpp | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/booster/xgboost.cpp b/booster/xgboost.cpp index 6e04b3166..5c445dabf 100644 --- a/booster/xgboost.cpp +++ b/booster/xgboost.cpp @@ -21,8 +21,7 @@ namespace xgboost{ * \return the pointer to the gradient booster created */ IBooster *CreateBooster( int booster_type ){ - // TODO - return NULL; + return new RTreeTrainer(); } }; };