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

Version Path
thera-0.0.8 lib/quarry/src/storage/arff.h
thera-0.0.7 lib/quarry/src/storage/arff.h
thera-0.0.6 lib/quarry/src/storage/arff.h
thera-0.0.5 lib/quarry/src/storage/arff.h
thera-0.0.4 lib/quarry/src/storage/arff.h
thera-0.0.3 lib/quarry/src/storage/arff.h
thera-0.0.2 lib/quarry/src/storage/arff.h
thera-0.0.1 lib/quarry/src/storage/arff.h