blob: 4a0fb16eb7a711abb4729e5f19543595f1ca5dfd (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
#ifndef RSVMTN_H
#define RSVMTN_H
// Truncated Newton method based RankSVM
#include"ranksvm.h"
class RSVMTN:public RSVM
{
public:
std::string getName()
{
return "TN";
};
int train(DataProvider &D){return 0;};
int predict(DataProvider &D){return 0;};
};
#endif
|