mirror of
https://github.com/rmontanana/mdlp.git
synced 2025-08-15 23:45:57 +00:00
35 lines
797 B
C++
35 lines
797 B
C++
#ifndef ARFFFILES_H
|
|
#define ARFFFILES_H
|
|
|
|
#include <string>
|
|
#include <vector>
|
|
#include "../typesFImdlp.h"
|
|
|
|
using namespace std;
|
|
|
|
class ArffFiles {
|
|
private:
|
|
vector<string> lines;
|
|
vector<pair<string, string>> attributes;
|
|
string className;
|
|
string classType;
|
|
vector<mdlp::samples_t> X;
|
|
vector<int> y;
|
|
|
|
void generateDataset(bool);
|
|
|
|
public:
|
|
ArffFiles();
|
|
void load(const string&, bool = true);
|
|
vector<string> getLines() const;
|
|
unsigned long int getSize() const;
|
|
string getClassName() const;
|
|
string getClassType() const;
|
|
static string trim(const string&);
|
|
vector<mdlp::samples_t>& getX();
|
|
vector<int>& getY();
|
|
vector<pair<string, string>> getAttributes() const;
|
|
static vector<int> factorize(const vector<string>& labels_t);
|
|
};
|
|
|
|
#endif |