資源簡介
一個簡單的支持向量機用VC實現,大家可以在它的基礎上加以改進.
代碼片段和文件信息
#include?“stdafx.h“
#include?“example_set.h“
example_set_c::example_set_c(){
??init(00);
};
example_set_c::example_set_c(SVMINT?new_total?SVMINT?new_dim){
??init(new_totalnew_dim);
};
void?example_set_c::init(SVMINT?new_total?SVMINT?new_dim){
??examples_total?=?0;
??capacity=0;
??has_y?=?0;
??has_alphas?=?0;
??has_scale?=?0;
??has_pattern_y?=?1;
??b?=?0;
??all_alphas?=?0;
??all_ys?=?0;
??//?create?dummy
??the_set?=?new?svm_example[1];
??the_set[0].example?=?0;
??dim=0;
??Exp?=?0;
??Var?=?0;
??filename?=?new?char[MAXCHAR];
??filename[0]=‘\0‘;
??set_dim(new_dim)
??resize(capacity);
??//?set?default?file?format
??my_format.sparse?=?0;
??my_format.where_x?=?2;
??my_format.where_y?=?1;
??my_format.where_alpha?=?0;
??my_format.delimiter?=?‘?‘;
};?
example_set_c::~example_set_c(){
?
?屬性????????????大小?????日期????時間???名稱
-----------?---------??----------?-----??----
?????文件??????28638??2005-08-18?03:37??mySVM\example_set.cpp
?????文件???????4657??2005-08-18?19:13??mySVM\example_set.h
?????文件???????2725??2005-08-18?03:37??mySVM\globals.cpp
?????文件???????2422??2005-08-18?03:54??mySVM\globals.h
?????文件??????51565??2005-08-18?03:38??mySVM\kernel.cpp
?????文件???????8927??2004-06-24?19:24??mySVM\kernel.h
?????文件??????23612??2005-08-18?19:40??mySVM\learn.cpp
?????文件???????4249??2005-08-18?03:44??mySVM\learn.dsp
?????文件????????726??2005-08-18?13:45??mySVM\learn.dsw
?????文件?????123904??2005-08-18?20:59??mySVM\learn.ncb
?????文件?????126976??2005-08-18?20:59??mySVM\learn.opt
?????文件????????760??2006-11-01?10:20??mySVM\learn.plg
?????文件?????165647??2005-08-18?02:20??mySVM\mysvm-manual.pdf
?????文件???????4064??2005-08-18?03:33??mySVM\mySVM.dsp
?????文件????????913??2005-08-18?22:08??mySVM\mySVM.dsw
?????文件?????173056??2006-11-01?11:11??mySVM\mySVM.ncb
?????文件?????131072??2006-11-01?11:11??mySVM\mySVM.opt
?????文件????????535??2005-08-18?03:47??mySVM\mySVM.plg
?????文件????????818??2005-08-18?17:06??mySVM\output.txt
?????文件??????13017??2005-08-18?03:38??mySVM\parameters.cpp
?????文件???????2695??2004-06-24?19:24??mySVM\parameters.h
?????文件???????8022??2004-06-24?19:24??mySVM\predict.cpp
?????文件???????3920??2005-08-18?04:09??mySVM\predict.dsp
?????文件????????583??2005-08-18?03:45??mySVM\predict.dsw
?????文件??????91136??2005-08-18?03:46??mySVM\predict.ncb
?????文件?????119808??2005-08-18?03:46??mySVM\predict.opt
?????文件????????907??2005-08-18?04:09??mySVM\predict.plg
?????文件???????1449??2005-08-18?03:30??mySVM\Readme.txt
?????文件??????16006??2005-08-18?03:38??mySVM\smo.cpp
?????文件???????1598??2004-06-24?19:24??mySVM\smo.h
............此處省略51個文件信息
評論
共有 條評論