Sha256: a18bfcddaa74bf1d888796be1165c2faf3134d0ccf1ba496ca715e06f2722356
Contents?: true
Size: 478 Bytes
Versions: 8
Compression:
Stored size: 478 Bytes
Contents
#ifndef __arff_h__ #define __arff_h__ #include "storage/storage.h" #include "data_set/dense/dense_data_set.h" #include <algorithm> #include <cctype> #include <string> using namespace std; namespace Storage { class ARFF : public Storage { typedef enum { relation, attributes, data } State; public: string path; ARFF(string path) : path(path) {} DataSet::DataSet *read(); void write(DataSet::DataSet *data_set); }; } #endif
Version data entries
8 entries across 8 versions & 1 rubygems