MCPcopy Create free account
hub / github.com/Xtra-Computing/thundersvm / SVR

Class SVR

include/thundersvm/model/svr.h:17–30  ·  view source on GitHub ↗

* @brief Support Vector Machine for regression */

Source from the content-addressed store, hash-verified

15 * @brief Support Vector Machine for regression
16 */
17class SVR : public SvmModel {
18public:
19 void train(const DataSet &dataset, SvmParam param) override;
20
21protected:
22 void model_setup(const DataSet &dataset, SvmParam &param) override;
23
24 /**
25 * save \f$\boldsymbel{\alpha}\f$ into coef.
26 * @param alpha_2
27 * @param instances
28 */
29 void save_svr_coef(const SyncArray<float_type> &alpha_2, const DataSet::node2d &instances);
30};
31
32#endif //THUNDERSVM_SVR_H

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected