2023-01-24 18:57:18 +01:00
|
|
|
|
|
|
|
#ifndef MLPP_DATA_H
|
|
|
|
#define MLPP_DATA_H
|
|
|
|
|
2023-01-23 21:13:26 +01:00
|
|
|
//
|
|
|
|
// Data.hpp
|
|
|
|
// MLP
|
|
|
|
//
|
|
|
|
// Created by Marc Melikyan on 11/4/20.
|
|
|
|
//
|
|
|
|
|
2023-01-25 18:27:14 +01:00
|
|
|
#include "core/string/ustring.h"
|
2023-01-26 14:52:49 +01:00
|
|
|
#include "core/variant/array.h"
|
2023-01-25 18:27:14 +01:00
|
|
|
|
|
|
|
#include "core/object/reference.h"
|
|
|
|
|
2023-01-23 21:13:26 +01:00
|
|
|
#include <string>
|
2023-01-24 19:00:54 +01:00
|
|
|
#include <tuple>
|
|
|
|
#include <vector>
|
|
|
|
|
2023-01-25 18:27:14 +01:00
|
|
|
class MLPPDataESimple : public Reference {
|
|
|
|
GDCLASS(MLPPDataESimple, Reference);
|
|
|
|
|
|
|
|
public:
|
|
|
|
std::vector<double> input;
|
|
|
|
std::vector<double> output;
|
|
|
|
|
|
|
|
protected:
|
|
|
|
static void _bind_methods();
|
|
|
|
};
|
|
|
|
|
|
|
|
class MLPPDataSimple : public Reference {
|
|
|
|
GDCLASS(MLPPDataSimple, Reference);
|
|
|
|
|
|
|
|
public:
|
|
|
|
std::vector<std::vector<double>> input;
|
|
|
|
std::vector<double> output;
|
|
|
|
|
|
|
|
protected:
|
|
|
|
static void _bind_methods();
|
|
|
|
};
|
|
|
|
|
|
|
|
class MLPPDataComplex : public Reference {
|
|
|
|
GDCLASS(MLPPDataComplex, Reference);
|
|
|
|
|
|
|
|
public:
|
|
|
|
std::vector<std::vector<double>> input;
|
|
|
|
std::vector<std::vector<double>> output;
|
|
|
|
|
|
|
|
protected:
|
|
|
|
static void _bind_methods();
|
|
|
|
};
|
|
|
|
|
|
|
|
class MLPPData : public Reference {
|
|
|
|
GDCLASS(MLPPData, Reference);
|
2023-01-24 19:20:18 +01:00
|
|
|
|
2023-01-24 19:00:54 +01:00
|
|
|
public:
|
2023-01-25 18:27:14 +01:00
|
|
|
// Load Datasets
|
|
|
|
Ref<MLPPDataSimple> load_breast_cancer(const String &path);
|
|
|
|
Ref<MLPPDataSimple> load_breast_cancer_svc(const String &path);
|
|
|
|
Ref<MLPPDataComplex> load_iris(const String &path);
|
|
|
|
Ref<MLPPDataComplex> load_wine(const String &path);
|
|
|
|
Ref<MLPPDataComplex> load_mnist_train(const String &path);
|
|
|
|
Ref<MLPPDataComplex> load_mnist_test(const String &path);
|
|
|
|
Ref<MLPPDataSimple> load_california_housing(const String &path);
|
|
|
|
Ref<MLPPDataESimple> load_fires_and_crime(const String &path);
|
|
|
|
|
|
|
|
void set_data_supervised(int k, const String &file_name, std::vector<std::vector<double>> &inputSet, std::vector<double> &outputSet);
|
|
|
|
void set_data_unsupervised(int k, const String &file_name, std::vector<std::vector<double>> &inputSet);
|
|
|
|
void set_data_simple(const String &file_name, std::vector<double> &inputSet, std::vector<double> &outputSet);
|
|
|
|
|
2023-01-26 14:52:49 +01:00
|
|
|
struct SplitComplexData {
|
|
|
|
Ref<MLPPDataComplex> train;
|
|
|
|
Ref<MLPPDataComplex> test;
|
|
|
|
};
|
|
|
|
|
|
|
|
SplitComplexData train_test_split(const Ref<MLPPDataComplex> &data, double test_size);
|
|
|
|
Array train_test_split_bind(const Ref<MLPPDataComplex> &data, double test_size);
|
|
|
|
|
2023-01-24 19:00:54 +01:00
|
|
|
// Load Datasets
|
|
|
|
std::tuple<std::vector<std::vector<double>>, std::vector<double>> loadBreastCancer();
|
|
|
|
std::tuple<std::vector<std::vector<double>>, std::vector<double>> loadBreastCancerSVC();
|
|
|
|
std::tuple<std::vector<std::vector<double>>, std::vector<std::vector<double>>> loadIris();
|
|
|
|
std::tuple<std::vector<std::vector<double>>, std::vector<std::vector<double>>> loadWine();
|
|
|
|
std::tuple<std::vector<std::vector<double>>, std::vector<std::vector<double>>> loadMnistTrain();
|
|
|
|
std::tuple<std::vector<std::vector<double>>, std::vector<std::vector<double>>> loadMnistTest();
|
|
|
|
std::tuple<std::vector<std::vector<double>>, std::vector<double>> loadCaliforniaHousing();
|
|
|
|
std::tuple<std::vector<double>, std::vector<double>> loadFiresAndCrime();
|
|
|
|
|
|
|
|
std::tuple<std::vector<std::vector<double>>, std::vector<std::vector<double>>, std::vector<std::vector<double>>, std::vector<std::vector<double>>> trainTestSplit(std::vector<std::vector<double>> inputSet, std::vector<std::vector<double>> outputSet, double testSize);
|
|
|
|
|
|
|
|
// Supervised
|
|
|
|
void setData(int k, std::string fileName, std::vector<std::vector<double>> &inputSet, std::vector<double> &outputSet);
|
|
|
|
void printData(std::vector<std::string> inputName, std::string outputName, std::vector<std::vector<double>> inputSet, std::vector<double> outputSet);
|
|
|
|
|
|
|
|
// Unsupervised
|
|
|
|
void setData(int k, std::string fileName, std::vector<std::vector<double>> &inputSet);
|
|
|
|
void printData(std::vector<std::string> inputName, std::vector<std::vector<double>> inputSet);
|
|
|
|
|
|
|
|
// Simple
|
|
|
|
void setData(std::string fileName, std::vector<double> &inputSet, std::vector<double> &outputSet);
|
|
|
|
void printData(std::string &inputName, std::string &outputName, std::vector<double> &inputSet, std::vector<double> &outputSet);
|
|
|
|
|
|
|
|
// Images
|
|
|
|
std::vector<std::vector<double>> rgb2gray(std::vector<std::vector<std::vector<double>>> input);
|
|
|
|
std::vector<std::vector<std::vector<double>>> rgb2ycbcr(std::vector<std::vector<std::vector<double>>> input);
|
|
|
|
std::vector<std::vector<std::vector<double>>> rgb2hsv(std::vector<std::vector<std::vector<double>>> input);
|
|
|
|
std::vector<std::vector<std::vector<double>>> rgb2xyz(std::vector<std::vector<std::vector<double>>> input);
|
|
|
|
std::vector<std::vector<std::vector<double>>> xyz2rgb(std::vector<std::vector<std::vector<double>>> input);
|
|
|
|
|
|
|
|
// Text-Based & NLP
|
|
|
|
std::string toLower(std::string text);
|
|
|
|
std::vector<char> split(std::string text);
|
|
|
|
std::vector<std::string> splitSentences(std::string data);
|
|
|
|
std::vector<std::string> removeSpaces(std::vector<std::string> data);
|
|
|
|
std::vector<std::string> removeNullByte(std::vector<std::string> data);
|
|
|
|
std::vector<std::string> segment(std::string text);
|
|
|
|
std::vector<double> tokenize(std::string text);
|
|
|
|
std::vector<std::string> removeStopWords(std::string text);
|
|
|
|
std::vector<std::string> removeStopWords(std::vector<std::string> segmented_data);
|
|
|
|
|
|
|
|
std::string stemming(std::string text);
|
|
|
|
|
|
|
|
std::vector<std::vector<double>> BOW(std::vector<std::string> sentences, std::string = "Default");
|
|
|
|
std::vector<std::vector<double>> TFIDF(std::vector<std::string> sentences);
|
2023-01-26 14:52:49 +01:00
|
|
|
|
2023-01-24 19:00:54 +01:00
|
|
|
std::tuple<std::vector<std::vector<double>>, std::vector<std::string>> word2Vec(std::vector<std::string> sentences, std::string type, int windowSize, int dimension, double learning_rate, int max_epoch);
|
2023-01-26 14:52:49 +01:00
|
|
|
|
|
|
|
struct WordsToVecResult {
|
|
|
|
std::vector<std::vector<double>> word_embeddings;
|
|
|
|
std::vector<std::string> word_list;
|
|
|
|
};
|
|
|
|
|
|
|
|
WordsToVecResult word_to_vec(std::vector<std::string> sentences, std::string type, int windowSize, int dimension, double learning_rate, int max_epoch);
|
|
|
|
|
2023-01-24 19:00:54 +01:00
|
|
|
std::vector<std::vector<double>> LSA(std::vector<std::string> sentences, int dim);
|
|
|
|
|
|
|
|
std::vector<std::string> createWordList(std::vector<std::string> sentences);
|
|
|
|
|
|
|
|
// Extra
|
|
|
|
void setInputNames(std::string fileName, std::vector<std::string> &inputNames);
|
|
|
|
std::vector<std::vector<double>> featureScaling(std::vector<std::vector<double>> X);
|
|
|
|
std::vector<std::vector<double>> meanNormalization(std::vector<std::vector<double>> X);
|
|
|
|
std::vector<std::vector<double>> meanCentering(std::vector<std::vector<double>> X);
|
|
|
|
std::vector<std::vector<double>> oneHotRep(std::vector<double> tempOutputSet, int n_class);
|
|
|
|
std::vector<double> reverseOneHot(std::vector<std::vector<double>> tempOutputSet);
|
2023-01-23 21:13:26 +01:00
|
|
|
|
2023-01-24 19:00:54 +01:00
|
|
|
template <class T>
|
|
|
|
std::vector<T> vecToSet(std::vector<T> inputSet) {
|
|
|
|
std::vector<T> setInputSet;
|
|
|
|
for (int i = 0; i < inputSet.size(); i++) {
|
|
|
|
bool new_element = true;
|
|
|
|
for (int j = 0; j < setInputSet.size(); j++) {
|
|
|
|
if (setInputSet[j] == inputSet[i]) {
|
|
|
|
new_element = false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (new_element) {
|
|
|
|
setInputSet.push_back(inputSet[i]);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return setInputSet;
|
|
|
|
}
|
2023-01-23 21:13:26 +01:00
|
|
|
|
2023-01-25 18:27:14 +01:00
|
|
|
protected:
|
|
|
|
static void _bind_methods();
|
2023-01-24 19:00:54 +01:00
|
|
|
};
|
2023-01-24 19:20:18 +01:00
|
|
|
|
2023-01-23 21:13:26 +01:00
|
|
|
#endif /* Data_hpp */
|