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

15
src/PyClassifiers/ODTE.h Normal file
View File

@@ -0,0 +1,15 @@
#ifndef ODTE_H
#define ODTE_H
#include "nlohmann/json.hpp"
#include "PyClassifier.h"
namespace pywrap {
class ODTE : public PyClassifier {
public:
ODTE() : PyClassifier("odte", "Odte") {};
~ODTE() = default;
std::string graph();
void setHyperparameters(const nlohmann::json& hyperparameters) override;
};
} /* namespace pywrap */
#endif /* ODTE_H */