blob: ef8d98cd7010bbead52eed3f191a4b20acae1ecd (
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, MatrixXd &res){
return 0;
};
|