Begin Folding

This commit is contained in:
2023-07-21 16:07:50 +02:00
parent d8218f9713
commit a2622a4fb6
6 changed files with 178 additions and 89 deletions

18
src/Platform/Folding.h Normal file
View File

@@ -0,0 +1,18 @@
#ifndef FOLDING_H
#define FOLDING_H
#include <vector>
using namespace std;
class KFold {
private:
int k;
int n;
vector<int> indices;
public:
KFold(int k, int n, int seed);
pair<vector<int>, vector<int>> getFold(int);
};
class KStratifiedFold {
};
#endif