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