cpp_data_feeding.md 4.2 KB
Newer Older
F
fengjiayi 已提交
1 2
# C++ Data Feeding

3
While using Paddle V2 API for Training, data feeding completely depends on the Python code. To get rid of the Python environment and achieve the goal of "wrapping the whole training by a while loop op" in Paddle Fluid, a C++ data feeding mechanism is required. 
F
fengjiayi 已提交
4

5
In this document we show the fundamental design of a C++ data feeding process, which includes data reading, shuffling and batching.
F
fengjiayi 已提交
6 7 8

## Reader

9
In order to handle the above mentioned problem, a new concept called 'Reader' is introduced. `Reader` is a series of inherited classes which can be held by our `Variable` and they are used to read or process file data.
F
fengjiayi 已提交
10 11 12 13


### `ReaderBase`

14
`ReaderBase` is the abstract base class for all readers. It defines the interface for all readers.
F
fengjiayi 已提交
15 16 17 18 19 20 21 22

```cpp
class ReaderBase {
 public:
  explicit ReaderBase(const std::vector<DDim>& shapes) : shapes_(shapes) {
    PADDLE_ENFORCE(!shapes_.empty());
  }
  // Read the next batch of data. (A 'batch' can be only one instance)
23
  // If the next batch doesn't exist, '*out' will be an empty std::vector.
F
fengjiayi 已提交
24 25
  virtual void ReadNext(std::vector<LoDTensor>* out) = 0;
  
26
  // Reinitialize the reader and read the file from the beginning.
F
fengjiayi 已提交
27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44
  virtual void ReInit() = 0;
  
  // Get a certain read in data's shape.
  DDim shape(size_t idx) const;
  // Get shapes of all read in data.
  std::vector<DDim> shapes() const { return shapes_; }
  // Set shapes of read in data.
  void set_shapes(const std::vector<DDim>& shapes) { shapes_ = shapes; }

  virtual ~ReaderBase() {}

 protected:
  std::vector<DDim> shapes_;
};
```

### `FileReader` and `DecoratedReader`

45
These two classes are derived from the `ReaderBase` and will further be derived by more specific readers. Thus, in our design, there are two kinds of readers: file readers and decorated readers. A file reader reads from a file of some specific format, and yield only one instance of data at a time. For example, RecordIO reader, jpg reader, .... A decorated reader takes another reader(both file reader and decorated reader are OK) as its 'underlying reader'. It gets data from its underlying reader, does some processing on them(shuffling, or batching), then yields processed data. The output data of a decorated reader can be a single instance or a batch. `ShuffleReader` and `BatchReader` are both decorated readers.
F
fengjiayi 已提交
46

47
All the readers share exactly the same interface as defined in `ReaderBase`. So they can be decorated for more than one time: We can **shuffle** a reader's outputs and then **batch** the shuffle outputs. The interface consistency also allows related ops use readers without knowing what they are exactly.
F
fengjiayi 已提交
48 49 50 51


### `ReaderHolder`

52
Different readers belong to different class types. This leads to a problem: How can we drop them into `Variable`s and fetch them out by a unified method? For example, if a Variable holds a `BatchReader`, we can not get it by the following code:
F
fengjiayi 已提交
53 54 55 56 57

```cpp
var->Get<ReaderBase>("batch_reader");
```

58
We would have to write:
F
fengjiayi 已提交
59 60 61 62 63

```cpp
var->Get<BatchReader>("batch_reader");
```

64
This requires that in order to get a reader from a variable, every time, we must know the reader's type exactly. This is nearly impossible.
F
fengjiayi 已提交
65

66
To solve this problem, we introduce `ReaderHolder` as a wrapper. It acts as an empty decorator of `ReaderBase`, which hides reader's type. With `ReaderHolder` we are able to fetch all types of readers by `var->Get<ReaderHolder>("...")` and regard the obtained object as a reader.
F
fengjiayi 已提交
67 68 69

## Related Operators

70
To create and invoke readers, some new ops are introduced:
F
fengjiayi 已提交
71 72 73

### `CreateReaderOp`

74
Each reader has its creation op. File readers' creation ops have no input and yield the created file reader as its output. Decorated readers' creation ops take the underlying readers as inputs and then yield new decorated readers.
F
fengjiayi 已提交
75 76 77 78

### `ReadOp`

A reader is only a Variable. It cannot trigger the reading process by itself. So we add the `ReadOp` to execute it. A `ReadOp` takes a reader Variable as its input. Each time it runs, it invokes the reader‘s `ReadNext()` function and gets a new batch of data(or only one instance of data, if we use file reader directly). The output data of a reader are in the form of `std::vector<LoDTenosr>`, so the `ReadOp` also needs to split the vector and move LoDTensors to their respective output Variables.