Sha256: f961ec00b78f181a2448a358aca01a383842e8f4899c28e751571a5e0847c3ab

Contents?: true

Size: 657 Bytes

Versions: 8

Compression:

Stored size: 657 Bytes

Contents

#ifndef __folders_h__
#define __folders_h__
#include "preprocessing/text/text_pipeline.h"
#include "data_set/data_set.h"
#include "storage/storage.h"
#include <algorithm>
#include <cctype>
#include <string>
using namespace std;

namespace Storage {
  class Folders : public Storage {
    void load_directory(string path, DataSet::SparseDataSet *data_set, int category_index);
    
  public:
    string path;
    Preprocessing::Text::TextPipeline *pipeline;
    
    Folders(string path, Preprocessing::Text::TextPipeline *pipeline) : path(path), pipeline(pipeline) {}
    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/folders.h
thera-0.0.7 lib/quarry/src/storage/folders.h
thera-0.0.6 lib/quarry/src/storage/folders.h
thera-0.0.5 lib/quarry/src/storage/folders.h
thera-0.0.4 lib/quarry/src/storage/folders.h
thera-0.0.3 lib/quarry/src/storage/folders.h
thera-0.0.2 lib/quarry/src/storage/folders.h
thera-0.0.1 lib/quarry/src/storage/folders.h