* @brief Support Vector Machine for regression */
| 11 | * @brief Support Vector Machine for regression |
| 12 | */ |
| 13 | class NuSVR : public SVR { |
| 14 | public: |
| 15 | void train(const DataSet &dataset, SvmParam param) override; |
| 16 | |
| 17 | protected: |
| 18 | void model_setup(const DataSet &dataset, SvmParam ¶m) override; |
| 19 | |
| 20 | }; |
| 21 | |
| 22 | #endif //THUNDERSVM_NUSVR_H |
nothing calls this directly
no outgoing calls
no test coverage detected