Add Pywrap sources

This commit is contained in:
2023-11-12 21:43:07 +01:00
parent f9258e43b9
commit f6e00530be
18 changed files with 642 additions and 9 deletions

View File

@@ -0,0 +1,13 @@
#ifndef RANDOMFOREST_H
#define RANDOMFOREST_H
#include "PyClassifier.h"
namespace pywrap {
class RandomForest : public PyClassifier {
public:
RandomForest() : PyClassifier("sklearn.ensemble", "RandomForestClassifier") {};
~RandomForest() = default;
std::string version();
};
} /* namespace pywrap */
#endif /* RANDOMFOREST_H */