GenSVM
gensvm_train.h
Go to the documentation of this file.
1 
27 #ifndef GENSVM_TRAIN_H
28 #define GENSVM_TRAIN_H
29 
30 // includes
31 #include "gensvm_init.h"
32 #include "gensvm_kernel.h"
33 #include "gensvm_optimize.h"
34 
35 // function declarations
36 void gensvm_train(struct GenModel *model, struct GenData *data,
37  struct GenModel *seed_model);
38 
39 #endif
A structure to represent the data.
Definition: gensvm_base.h:57
void gensvm_train(struct GenModel *model, struct GenData *data, struct GenModel *seed_model)
Utility function for training a GenSVM model.
Definition: gensvm_train.c:44
A structure to represent a single GenSVM model.
Definition: gensvm_base.h:92
Header file for gensvm_kernel.c.
Header file for gensvm_optimize.c.
Header file for gensvm_init.c.