GenSVM
gensvm_init.h
Go to the documentation of this file.
1 
31 #ifndef GENSVM_INIT_H
32 #define GENSVM_INIT_H
33 
34 #include "gensvm_base.h"
35 
36 void gensvm_init_V(struct GenModel *from_model, struct GenModel *to_model,
37  struct GenData *data);
38 void gensvm_initialize_weights(struct GenData *data, struct GenModel *model);
39 
40 #endif
A structure to represent the data.
Definition: gensvm_base.h:57
void gensvm_initialize_weights(struct GenData *data, struct GenModel *model)
Initialize instance weights.
Definition: gensvm_init.c:152
A structure to represent a single GenSVM model.
Definition: gensvm_base.h:92
void gensvm_init_V(struct GenModel *from_model, struct GenModel *to_model, struct GenData *data)
Seed the matrix V from an existing model or using rand.
Definition: gensvm_init.c:57
Header file for gensvm_base.c.