Añade AdaBoost and tests

This commit is contained in:
2025-06-15 12:03:32 +02:00
parent 1678a17fc4
commit 2a99dce23b
9 changed files with 62 additions and 20 deletions

15
pyclfs/AdaBoost.h Normal file
View File

@@ -0,0 +1,15 @@
#ifndef ADABOOST_H
#define ADABOOST_H
#include "PyClassifier.h"
namespace pywrap {
class AdaBoost : public PyClassifier {
public:
AdaBoost();
~AdaBoost() = default;
int getNumberOfEdges() const override;
int getNumberOfStates() const override;
int getNumberOfNodes() const override;
};
} /* namespace pywrap */
#endif /* ADABOOST_H */