blob: c410cefd0e5affda0bca5a87f0514e2efd7487fb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
/**
* @file gensvm_train.h
* @author Gertjan van den Burg
* @date May, 2016
* @brief Header file for gensvm_train.c
*
*/
#ifndef GENSVM_TRAIN_H
#define GENSVM_TRAIN_H
// includes
#include "gensvm_init.h"
#include "gensvm_kernel.h"
#include "gensvm_optimize.h"
// function declarations
void gensvm_train(struct GenModel *model, struct GenData *data,
struct GenModel *seed_model);
#endif
|