blob: 746e967d295d3bf843da78ef268731d47021f1bd (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
#include "ranksvmtn.h"
using namespace std;
using namespace Eigen;
int RSVMTN::train(DataSet &D, Labels &label){
return 0;
};
int RSVMTN::predict(DataSet &D, Labels &res){
return 0;
};
|