svm_model.h
来自「A paper that I presented on Supervisory 」· C头文件 代码 · 共 22 行
H
22 行
/*!
*
*
* sharat@mit.edu
*/
#ifndef __svm_model_h__
#define __svm_model_h__
#include "rule.h"
#include <vector>
class svm_model
{
public:
int nrule;
vector<rule> rules;
void classify(const vector<double> & f,vector<double> & scores);
};
void load_model(const char* filename,svm_model& model);
#endif
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?