14 lines
345 B
C++
14 lines
345 B
C++
#ifndef SVC_H
|
|
#define SVC_H
|
|
#include "PyClassifier.h"
|
|
|
|
namespace pywrap {
|
|
class SVC : public PyClassifier {
|
|
public:
|
|
SVC() : PyClassifier("sklearn.svm", "SVC", true) {};
|
|
~SVC() = default;
|
|
void setHyperparameters(const nlohmann::json& hyperparameters) override;
|
|
};
|
|
|
|
} /* namespace pywrap */
|
|
#endif /* STREE_H */ |