Refactor library structure

This commit is contained in:
2024-03-08 22:20:38 +01:00
parent 5bec9d4d2f
commit 7534cba7e6
23 changed files with 22 additions and 152 deletions

9
pyclfs/XGBoost.cc Normal file
View File

@@ -0,0 +1,9 @@
#include "XGBoost.h"
//See https ://stackoverflow.com/questions/36071672/using-xgboost-in-c
namespace pywrap {
XGBoost::XGBoost() : PyClassifier("xgboost", "XGBClassifier", true)
{
validHyperparameters = { "tree_method", "early_stopping_rounds", "n_jobs" };
}
} /* namespace pywrap */