refactor system types in library

Add new test taken from join_fit in FImdlp python
Update instructions in README
This commit is contained in:
2023-04-11 19:24:31 +02:00
parent 49c08bfe12
commit d77d27459b
7 changed files with 30 additions and 11 deletions

View File

@@ -3,6 +3,7 @@
#include <string>
#include <vector>
#include "../typesFImdlp.h"
using namespace std;
@@ -12,7 +13,7 @@ private:
vector<pair<string, string>> attributes;
string className;
string classType;
vector<vector<float>> X;
vector<mdlp::samples_t> X;
vector<int> y;
void generateDataset(bool);
@@ -32,7 +33,7 @@ public:
static string trim(const string &);
vector<vector<float>> &getX();
vector<mdlp::samples_t> &getX();
vector<int> &getY();