Implement hyperparameters
This commit is contained in:
13
src/Classifier.h
Normal file
13
src/Classifier.h
Normal 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 */
|
Reference in New Issue
Block a user