GenSVM
gensvm_predict.h
Go to the documentation of this file.
1 
30 #ifndef GENSVM_PREDICT_H
31 #define GENSVM_PREDICT_H
32 
33 // includes
34 #include "gensvm_kernel.h"
35 #include "gensvm_simplex.h"
36 #include "gensvm_zv.h"
37 
38 // function declarations
39 void gensvm_predict_labels(struct GenData *testdata,
40  struct GenModel *model, long *predy);
41 double gensvm_prediction_perf(struct GenData *data, long *perdy);
42 
43 #endif
double gensvm_prediction_perf(struct GenData *data, long *perdy)
Calculate the predictive performance (percentage correct)
A structure to represent the data.
Definition: gensvm_base.h:57
A structure to represent a single GenSVM model.
Definition: gensvm_base.h:92
Header file for gensvm_kernel.c.
void gensvm_predict_labels(struct GenData *testdata, struct GenModel *model, long *predy)
Predict class labels of data given and output in predy.
Header file for gensvm_zv.c.
Header file for gensvm_simplex.c.