Implement hyperparameters

This commit is contained in:
2023-11-08 10:35:38 +01:00
parent 1f46fc6c24
commit 331381930a
17 changed files with 913 additions and 325 deletions

13
src/Classifier.h Normal file
View File

@@ -0,0 +1,13 @@
#ifndef CLASSIFER_H
#define CLASSIFER_H
#include <nlohmann/json.hpp>
namespace pywrap {
class Classifier {
public:
Classifier() = default;
virtual ~Classifier() = default;
virtual void setHyperparameters(const nlohmann::json& hyperparameters) = 0;
};
} /* namespace pywrap */
#endif /* CLASSIFER_H */