blob: 97af01fa4a5cb340dc03c4fb7e19aa084259fbe7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
/**
* @file gensvm_pred.h
* @author Gertjan van den Burg
* @date August, 2013
* @brief Header file for gensvm_pred.c
*
* @details
* Contains function declarations for prediction functions.
*
*/
#ifndef GENSVM_PRED_H
#define GENSVM_PRED_H
// forward declarations
struct GenData;
struct GenModel;
// function declarations
void gensvm_predict_labels(struct GenData *testdata,
struct GenModel *model, long *predy);
double gensvm_prediction_perf(struct GenData *data, long *perdy);
#endif
|