blob: 3fe53791a4ede4fd24466fb8da7e90733207e049 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
//
// Created by joe on 4/12/15.
//
#ifndef RANKSVM_RANKACCU_H
#define RANKSVM_RANKACCU_H
#include<vector>
#include"../tools/dataProvider.h"
int rank_accu(DataList &D,const std::vector<double> pred);
#endif //RANKSVM_RANKACCU_H
|