Add Pywrap sources
This commit is contained in:
15
src/PyClassifiers/ODTE.h
Normal file
15
src/PyClassifiers/ODTE.h
Normal 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 */
|
Reference in New Issue
Block a user