update to BayesNet 1.0.3

This commit is contained in:
2024-02-25 18:02:36 +01:00
parent 5a6d38e900
commit bd6f6f5837
21 changed files with 37 additions and 48 deletions

12
src/XGBoost.h Normal file
View File

@@ -0,0 +1,12 @@
#ifndef XGBOOST_H
#define XGBOOST_H
#include "PyClassifier.h"
namespace pywrap {
class XGBoost : public PyClassifier {
public:
XGBoost();
~XGBoost() = default;
};
} /* namespace pywrap */
#endif /* XGBOOST_H */