Add Pywrap sources
This commit is contained in:
15
src/PyClassifiers/SVC.h
Normal file
15
src/PyClassifiers/SVC.h
Normal file
@@ -0,0 +1,15 @@
|
||||
#ifndef SVC_H
|
||||
#define SVC_H
|
||||
#include "PyClassifier.h"
|
||||
|
||||
namespace pywrap {
|
||||
class SVC : public PyClassifier {
|
||||
public:
|
||||
SVC() : PyClassifier("sklearn.svm", "SVC") {};
|
||||
~SVC() = default;
|
||||
std::string version();
|
||||
void setHyperparameters(const nlohmann::json& hyperparameters) override;
|
||||
};
|
||||
|
||||
} /* namespace pywrap */
|
||||
#endif /* STREE_H */
|
Reference in New Issue
Block a user