data_set.h 4.1 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28
/* Copyright (c) 2018 PaddlePaddle Authors. All Rights Reserved.
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *     http://www.apache.org/licenses/LICENSE-2.0
 *
 *     Unless required by applicable law or agreed to in writing, software
 *     distributed under the License is distributed on an "AS IS" BASIS,
 *     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 *     See the License for the specific language governing permissions and
 *     limitations under the License. */

#pragma once

#include <fstream>
#include <memory>
#include <mutex>  // NOLINT
#include <string>
#include <thread>  // NOLINT
#include <vector>

#include "paddle/fluid/framework/data_feed.h"

namespace paddle {
namespace framework {

X
xjqbest 已提交
29 30 31 32 33 34 35 36 37 38
// Dataset is a abstract class, which defines user interfaces
// Example Usage:
//    Dataset* dataset = DatasetFactory::CreateDataset("InMemoryDataset")
//    dataset->SetFileList(std::vector<std::string>{"a.txt", "b.txt"})
//    dataset->SetThreadNum(1)
//    dataset->CreateReaders();
//    dataset->SetDataFeedDesc(your_data_feed_desc);
//    dataset->LoadIntoMemory();
//    dataset->SetTrainerNum(2);
//    dataset->GlobalShuffle();
39 40
class Dataset {
 public:
41 42
  Dataset() {}
  virtual ~Dataset() {}
43 44 45
  virtual void SetFileList(const std::vector<std::string>& filelist) = 0;
  virtual void SetThreadNum(int thread_num) = 0;
  virtual void SetTrainerNum(int trainer_num) = 0;
46 47
  virtual void SetHdfsConfig(const std::string& fs_name,
                             const std::string& fs_ugi) = 0;
48 49 50 51 52 53
  virtual void SetDataFeedDesc(const std::string& data_feed_desc_str) = 0;
  virtual const std::vector<std::string>& GetFileList() = 0;
  virtual int GetThreadNum() = 0;
  virtual int GetTrainerNum() = 0;
  virtual const paddle::framework::DataFeedDesc& GetDataFeedDesc() = 0;
  virtual std::vector<std::shared_ptr<paddle::framework::DataFeed>>&
54
  GetReaders() = 0;
55 56 57 58 59
  virtual void LoadIntoMemory() = 0;
  virtual void LocalShuffle() = 0;
  virtual void GlobalShuffle() = 0;
  virtual void CreateReaders() = 0;
  virtual void DestroyReaders() = 0;
60

61 62 63 64 65
 protected:
  virtual int ReceiveFromClient(int msg_type, int client_id,
                                const std::string& msg) = 0;
};

X
xjqbest 已提交
66 67
// DatasetImpl is the implementation of Dataset,
// it holds memory data if user calls load_into_memory
68
template <typename T>
69 70 71 72
class DatasetImpl : public Dataset {
 public:
  DatasetImpl();
  virtual ~DatasetImpl() {}
73 74 75 76

  virtual void SetFileList(const std::vector<std::string>& filelist);
  virtual void SetThreadNum(int thread_num);
  virtual void SetTrainerNum(int trainer_num);
77 78
  virtual void SetHdfsConfig(const std::string& fs_name,
                             const std::string& fs_ugi);
79
  virtual void SetDataFeedDesc(const std::string& data_feed_desc_str);
80

D
dongdaxiang 已提交
81 82 83
  virtual const std::vector<std::string>& GetFileList() { return filelist_; }
  virtual int GetThreadNum() { return thread_num_; }
  virtual int GetTrainerNum() { return trainer_num_; }
84 85 86 87
  virtual const paddle::framework::DataFeedDesc& GetDataFeedDesc() {
    return data_feed_desc_;
  }

88
  virtual std::vector<std::shared_ptr<paddle::framework::DataFeed>>&
89
  GetReaders();
90 91
  virtual void LoadIntoMemory();
  virtual void LocalShuffle();
D
dongdaxiang 已提交
92
  virtual void GlobalShuffle();
93
  virtual void CreateReaders();
94
  virtual void DestroyReaders();
D
dongdaxiang 已提交
95

96
 protected:
D
dongdaxiang 已提交
97 98
  virtual int ReceiveFromClient(int msg_type, int client_id,
                                const std::string& msg);
99
  std::vector<std::shared_ptr<paddle::framework::DataFeed>> readers_;
100 101
  std::vector<T> memory_data_;
  std::mutex mutex_for_update_memory_data_;
102 103 104
  int thread_num_;
  paddle::framework::DataFeedDesc data_feed_desc_;
  int trainer_num_;
105 106 107
  std::vector<std::string> filelist_;
  size_t file_idx_;
  std::mutex mutex_for_pick_file_;
108 109
};

X
xjqbest 已提交
110
// use std::vector<MultiSlotType> as data type
111 112 113 114 115 116
class MultiSlotDataset : public DatasetImpl<std::vector<MultiSlotType>> {
 public:
  MultiSlotDataset() {}
  virtual ~MultiSlotDataset() {}
};

D
dongdaxiang 已提交
117 118
}  // end namespace framework
}  // end namespace paddle