aboutsummaryrefslogtreecommitdiff
path: root/include/gensvm_pred.h
blob: 76b3ad30bc56030a99f541cc758e7dd6cc70dcee (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
25
26
/**
 * @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

#include "globals.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