data_feeder.py 16.7 KB
Newer Older
1
#   Copyright (c) 2018 PaddlePaddle Authors. All Rights Reserved.
D
dzhwinter 已提交
2
#
D
dzhwinter 已提交
3 4 5
# 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
D
dzhwinter 已提交
6
#
D
dzhwinter 已提交
7
#     http://www.apache.org/licenses/LICENSE-2.0
D
dzhwinter 已提交
8
#
D
dzhwinter 已提交
9 10 11 12 13 14
# 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.

15
from . import core
16
import numpy as np
C
chengduoZH 已提交
17
import os
Y
yuyang18 已提交
18
import multiprocessing
19
import warnings
20
import struct
Y
Yu Yang 已提交
21

22 23 24
from .framework import (
    Variable,
    default_main_program,
25
    in_dygraph_mode,
26 27
    _current_expected_place,
)
C
chengduo 已提交
28
from .framework import _cpu_num, _cuda_ids
29

Y
Yu Yang 已提交
30 31
__all__ = ['DataFeeder']

L
Leo Chen 已提交
32 33 34
_PADDLE_DTYPE_2_NUMPY_DTYPE = {
    core.VarDesc.VarType.BOOL: 'bool',
    core.VarDesc.VarType.FP16: 'float16',
35
    core.VarDesc.VarType.BF16: 'uint16',
L
Leo Chen 已提交
36 37 38 39 40 41 42 43 44 45 46
    core.VarDesc.VarType.FP32: 'float32',
    core.VarDesc.VarType.FP64: 'float64',
    core.VarDesc.VarType.INT8: 'int8',
    core.VarDesc.VarType.INT16: 'int16',
    core.VarDesc.VarType.INT32: 'int32',
    core.VarDesc.VarType.INT64: 'int64',
    core.VarDesc.VarType.UINT8: 'uint8',
    core.VarDesc.VarType.COMPLEX64: 'complex64',
    core.VarDesc.VarType.COMPLEX128: 'complex128',
}

Y
Yu Yang 已提交
47

48 49 50 51 52 53 54
def convert_float_to_uint16(data, data_format="NCHW"):
    if data.size == 0:
        return data.view(np.uint16)

    if data_format == "NHWC":
        data = np.transpose(data, [0, 3, 1, 2])

55 56 57 58 59
    new_data = np.vectorize(
        lambda x: struct.unpack('<I', struct.pack('<f', x))[0] >> 16,
        otypes=[np.uint16],
    )(data.flat)
    new_data = np.reshape(new_data, data.shape)
60 61

    if data_format == "NHWC":
62
        new_data = np.transpose(new_data, [0, 2, 3, 1])
63 64 65
    return new_data


66 67 68 69 70 71 72 73
def convert_uint16_to_float(data):
    new_data = np.vectorize(
        lambda x: struct.unpack('<f', struct.pack('<I', x << 16))[0],
        otypes=[np.float32],
    )(data.flat)
    return np.reshape(new_data, data.shape)


S
sneaxiy 已提交
74
def convert_dtype(dtype):
P
pkpk 已提交
75
    if isinstance(dtype, core.VarDesc.VarType):
L
Leo Chen 已提交
76 77
        if dtype in _PADDLE_DTYPE_2_NUMPY_DTYPE:
            return _PADDLE_DTYPE_2_NUMPY_DTYPE[dtype]
78
    elif isinstance(dtype, type):
79
        # This branch is for NumPy scalar types
80
        if dtype in [
81 82 83 84 85 86 87 88 89 90 91 92
            bool,
            np.float16,
            np.uint16,
            np.float32,
            np.float64,
            np.int8,
            np.int16,
            np.int32,
            np.int64,
            np.uint8,
            np.complex64,
            np.complex128,
93 94
        ]:
            return dtype.__name__
P
pkpk 已提交
95
    else:
96
        # This branch is for np.dtype and str
P
pkpk 已提交
97
        if dtype in [
98 99 100 101 102 103 104 105 106 107 108 109
            'bool',
            'float16',
            'uint16',
            'float32',
            'float64',
            'int8',
            'int16',
            'int32',
            'int64',
            'uint8',
            'complex64',
            'complex128',
P
pkpk 已提交
110
        ]:
111 112 113
            # NOTE(SigureMo): Since the np.dtype object is not an instance of
            # type, so it will not be handled by the previous branch. We need
            # to convert it to str here.
P
pkpk 已提交
114
            return str(dtype)
115 116 117
        # NOTE(zhangbo): Now numpy does not support bfloat, so use numpy.uint16 to represent paddle.bfloat16, there binaries are consistent.
        # If cast ndarray to uint16 and trans to tensor, should not ndarray.astype('uint16') directly
        # should use function 'convert_float_to_uint16' above, otherwise bits is wrong
118 119
        if dtype in ['bfloat16']:
            return 'uint16'
P
pkpk 已提交
120

121
    raise TypeError(
122
        "dtype must be any of [bool, float16, uint16, float32, float64, int8, int16, "
123 124
        "int32, int64, uint8, complex64, complex128, bfloat16], but received %s"
        % dtype
125
    )
S
sneaxiy 已提交
126 127


128 129 130
def check_variable_and_dtype(
    input, input_name, expected_dtype, op_name, extra_message=''
):
131
    check_type(input, input_name, Variable, op_name, extra_message)
132 133 134 135
    check_dtype(input.dtype, input_name, expected_dtype, op_name, extra_message)


def check_type(input, input_name, expected_type, op_name, extra_message=''):
136 137 138 139 140 141 142
    # NOTE [ Why skip dynamic graph check ]:
    # 1. If the input type / dtype of a layer is wrong, it will be reported
    # directly on that line. User can easily print the relevant information
    # on which line. It is easier to debug, so there is no need to check
    # in dynamic graph mode.
    # 2. Performance considerations. Because these checks are executed at
    # each step in dynamic graph mode, it will bring a heavy performance burden.
143
    if in_dygraph_mode():
144
        return
145

146
    # NOTE: `in_to_static_mode` is used to determined whether this op is called under
W
wanghuancoder 已提交
147 148
    # @to_static in transformation from dygrah to static layer. We add Tensor in
    # expected_type to skip checking because Tensor may be created and used in unusual way.
149
    from .dygraph.base import in_to_static_mode
150

151
    # Need a better design to be fix this.
152
    if in_to_static_mode():
153
        if not isinstance(expected_type, tuple):
154
            expected_type = (expected_type,)
W
wanghuancoder 已提交
155 156
        expected_type += (core.eager.Tensor,)
    elif isinstance(input, core.eager.Tensor):
157
        raise TypeError(
158
            "Please use `with base.dygraph.guard()` as context or `base.enable_dygraph()` to switch to imperative mode firstly. "
159
            "Because received '{}' in {} is a imperative Variable.".format(
160 161 162
                input_name, op_name
            )
        )
163 164
    if not isinstance(input, expected_type):
        raise TypeError(
165 166 167
            "The type of '%s' in %s must be %s, but received %s. %s"
            % (input_name, op_name, expected_type, type(input), extra_message)
        )
168 169


170 171 172
def check_dtype(
    input_dtype, input_name, expected_dtype, op_name, extra_message=''
):
173
    # See NOTE [ Why skip dynamic graph check ]
174
    if in_dygraph_mode():
175
        return
176 177
    if convert_dtype(input_dtype) in ['float16']:
        warnings.warn(
178 179 180
            "The data type of '%s' in %s only support float16 in GPU now. %s"
            % (input_name, op_name, extra_message)
        )
181
    if convert_dtype(input_dtype) in ['uint16'] and op_name not in [
182 183 184
        'reshape',
        'lookup_table',
        'scale',
185 186 187
    ]:
        warnings.warn(
            "The data type of '%s' in %s only support bfloat16 in OneDNN now. %s"
188 189
            % (input_name, op_name, extra_message)
        )
190 191
    if convert_dtype(input_dtype) not in expected_dtype:
        raise TypeError(
192 193 194
            "The data type of '%s' in %s must be %s, but received %s. %s"
            % (
                input_name,
195
                op_name,
196 197 198 199 200 201 202 203 204 205 206 207 208 209
                expected_dtype,
                convert_dtype(input_dtype),
                extra_message,
            )
        )


def check_shape(
    shape,
    op_name,
    expected_shape_type=(list, tuple, Variable),
    expected_element_type=(int, Variable),
    expected_tensor_dtype=('int32', 'int64'),
):
210
    # See NOTE [ Why skip dynamic graph check ]
211
    if in_dygraph_mode():
212 213 214 215 216 217 218
        return
    check_type(shape, 'shape', expected_shape_type, op_name)
    if expected_element_type is not None and not isinstance(shape, Variable):
        for item in shape:
            check_type(item, 'element of shape', expected_element_type, op_name)
            if expected_tensor_dtype is not None and isinstance(item, Variable):
                check_dtype(
219 220 221
                    item.dtype,
                    'element of shape',
                    expected_tensor_dtype,
222
                    op_name,
223 224 225 226
                    'If element of shape is Tensor, its data type should be {}'.format(
                        ', '.join(expected_tensor_dtype)
                    ),
                )
227 228 229 230
    if expected_tensor_dtype is not None and isinstance(shape, Variable):
        check_dtype(shape.dtype, 'shape', expected_tensor_dtype, op_name)


231
class DataToLoDTensorConverter:
Y
Yu Yang 已提交
232 233 234 235
    def __init__(self, place, lod_level, shape, dtype):
        self.place = place
        self.lod_level = lod_level
        self.shape = shape
236 237 238 239 240 241 242
        negtive_count = 0
        for s in self.shape:
            if s < 0:
                negtive_count += 1
            if negtive_count > 1:
                self.shape = None
                break
S
sneaxiy 已提交
243 244
        self.dtype = convert_dtype(dtype)
        self._reset()
Y
Yu Yang 已提交
245

S
sneaxiy 已提交
246
    def _reset(self):
Y
Yu Yang 已提交
247
        self.data = []
248
        self.lod = [[] for _ in range(self.lod_level)]
Y
Yu Yang 已提交
249 250 251 252 253 254 255 256

    def feed(self, data):
        self._feed_impl_(data, self.lod, self.lod_level)

    def _feed_impl_(self, data, lod, lod_level):
        if lod_level == 0:
            self.data.append(data)
        else:
257
            lod[0].append(len(data))
Y
Yu Yang 已提交
258
            for each_data in data:
K
Kexin Zhao 已提交
259
                self._feed_impl_(each_data, lod[1:], lod_level - 1)
Y
Yu Yang 已提交
260

S
sneaxiy 已提交
261
    def _check_shape(self, shape):
S
sneaxiy 已提交
262 263 264
        for s1, s2 in zip(self.shape, shape):
            if s1 != s2 and s1 >= 0 and s2 >= 0:
                raise ValueError(
265 266 267 268
                    "Shape not match. What is defined in data layer is {}, but receive {}".format(
                        self.shape, shape
                    )
                )
S
sneaxiy 已提交
269

Y
Yu Yang 已提交
270
    def done(self):
271
        arr = np.array(self.data, dtype=self.dtype)
S
sneaxiy 已提交
272 273
        if self.shape:
            if len(arr.shape) != len(self.shape):
S
sneaxiy 已提交
274 275 276 277
                try:
                    arr = arr.reshape(self.shape)
                except ValueError:
                    raise ValueError(
278 279 280 281
                        "Reshape error. What is defined in data layer is {}, but receive {}".format(
                            self.shape, arr.shape
                        )
                    )
Y
Yu Yang 已提交
282 283 284
        t = core.LoDTensor()
        t.set(arr, self.place)
        if self.lod_level > 0:
285
            t.set_recursive_sequence_lengths(self.lod)
S
sneaxiy 已提交
286
        self._reset()
Y
Yu Yang 已提交
287 288 289
        return t


290
class BatchedTensorProvider:
S
sneaxiy 已提交
291 292 293 294 295 296 297 298 299 300
    def __init__(self, feed_list, place, batch_size, generator, drop_last):
        self.place = place
        self.batch_size = batch_size
        self.generator = generator
        self.converters = []
        self.drop_last = drop_last

        for var in feed_list:
            assert var.lod_level == 0, "lod_level must be 0"
            self.converters.append(
301 302 303 304 305 306 307
                DataToLoDTensorConverter(
                    place=self.place,
                    lod_level=0,
                    shape=var.shape,
                    dtype=var.dtype,
                )
            )
S
sneaxiy 已提交
308 309 310 311 312 313 314

    def _done(self):
        return [c.done() for c in self.converters]

    def __call__(self):
        idx = 0
        for each_sample in self.generator():
315
            for each_slot, each_converter in zip(each_sample, self.converters):
S
sneaxiy 已提交
316 317 318 319 320 321 322 323 324 325 326 327 328
                each_converter.data.append(each_slot)

            idx += 1
            if idx == self.batch_size:
                idx = 0
                yield self._done()

        if not self.drop_last and idx > 0:
            yield self._done()
        else:
            [c._reset() for c in self.converters]


329
class DataFeeder:
C
chengduoZH 已提交
330
    """
331
    :api_attr: Static Graph
332

C
chengduoZH 已提交
333
    DataFeeder converts the data that returned by a reader into a data
334 335
    structure that can feed into Executor. The reader is usually a
    python generator that returns a list of mini-batch data entries.
336 337 338 339

    Parameters:
        feed_list (list): Variables or names of Variables that need
            to feed.
340
        place (:ref:`api_base_CPUPlace` | :ref:`api_base_CUDAPlace` ):
341
            place indicates the device (CPU | GPU) the data will be fed into, if
342
            you want to feed data into GPU, please using :code:`base.CUDAPlace(i)`
343
            (:code:`i` represents the GPU id), or if you want to feed data into CPU,
344 345
            please using :code:`base.CPUPlace()`.
        program (:ref:`api_base_Program` , optional): The Program that will
346
            feed data into, if program is None, it will use default_main_program().
347
            Default None.
C
chengduoZH 已提交
348 349

    Raises:
350
        :code:`ValueError` - If some Variables are not in this Program.
C
chengduoZH 已提交
351

352
    Example:
353 354 355 356
        ..  code-block:: python

            import numpy as np
            import paddle
357
            import paddle.base as base
358

359
            place = base.CPUPlace()
360
            def reader():
361 362
                for _ in range(4):
                    yield np.random.random([4]).astype('float32'), np.random.random([3]).astype('float32'),
363

364 365
            main_program = base.Program()
            startup_program = base.Program()
366

367
            with base.program_guard(main_program, startup_program):
368 369
                data_1 = paddle.static.data(name='data_1', shape=[None, 2, 2], dtype='float32')
                data_2 = paddle.static.data(name='data_2', shape=[None, 1, 3], dtype='float32')
C
Charles-hit 已提交
370
                out = paddle.static.nn.fc(x=[data_1, data_2], size=2)
371
                # ...
372
            feeder = base.DataFeeder([data_1, data_2], place)
373

374
            exe = base.Executor(place)
375
            exe.run(startup_program)
376

377
            feed_data = feeder.feed(reader())
378

379 380 381
            # print feed_data to view feed results
            # print(feed_data['data_1'])
            # print(feed_data['data_2'])
382

383 384 385
            outs = exe.run(program=main_program,
                            feed=feed_data,
                            fetch_list=[out])
386
            print(outs)
387

C
chengduoZH 已提交
388 389
    """

F
fengjiayi 已提交
390
    def __init__(self, feed_list, place, program=None):
Y
Yu Yang 已提交
391 392 393 394
        self.feed_dtypes = []
        self.feed_names = []
        self.feed_shapes = []
        self.feed_lod_level = []
F
fengjiayi 已提交
395 396
        if program is None:
            program = default_main_program()
Y
Yu Yang 已提交
397
        for each_var in feed_list:
398
            if isinstance(each_var, str):
F
fengjiayi 已提交
399
                each_var = program.block(0).var(each_var)
Y
Yu Yang 已提交
400 401 402 403 404
            if not isinstance(each_var, Variable):
                raise TypeError("Feed list should contain a list of variable")
            self.feed_dtypes.append(each_var.dtype)
            self.feed_names.append(each_var.name)
            self.feed_lod_level.append(each_var.lod_level)
S
sneaxiy 已提交
405
            self.feed_shapes.append(each_var.shape)
Y
Yu Yang 已提交
406 407 408 409

        self.place = place

    def feed(self, iterable):
C
chengduoZH 已提交
410
        """
411
        According to :code:`feed_list` of :code:`DataFeeder` and :code:`iterable` , converts
412
        the input into a data structure that can feed into Executor.
C
chengduoZH 已提交
413

414 415
        Parameters:
            iterable (generator): user defined python generator to read the raw input data
C
chengduoZH 已提交
416

417
        Returns:
418
            :code:`dict`: a :code:`dict` that contains (variable name - converted tensor) pairs
419

420
        Example:
421 422
            ..  code-block:: python

423 424 425 426 427 428
                # In this example, reader - generator will return a list of ndarray of 3 elements
                # feed API will convert each ndarray input into a tensor
                # the return result is a dict with keys: data_1, data_2, data_3
                # result['data_1']  a LoD-Tensor with shape of  [5, 2, 1, 3]. 5 is batch size, and [2, 1, 3] is the real shape of data_1.
                # result['data_2'], result['data_3'] are similar.
                import numpy as np
429
                import paddle.base as base
430

431
                def reader(limit=5):
432 433
                    for i in range(1, limit + 1):
                        yield np.ones([6]).astype('float32') * i , np.ones([1]).astype('int64') * i, np.random.random([9]).astype('float32')
434

435 436 437
                data_1 = paddle.static.data(name='data_1', shape=[None, 2, 1, 3])
                data_2 = paddle.static.data(name='data_2', shape=[None, 1], dtype='int64')
                data_3 = paddle.static.data(name='data_3', shape=[None, 3, 3], dtype='float32')
438
                feeder = base.DataFeeder(['data_1','data_2', 'data_3'], base.CPUPlace())
439 440


441 442 443
                result = feeder.feed(reader())
                print(result['data_1'])
                print(result['data_2'])
444
                print(result['data_3'])
445

C
chengduoZH 已提交
446
        """
Y
Yu Yang 已提交
447
        converter = []
448 449 450
        for lod_level, shape, dtype in zip(
            self.feed_lod_level, self.feed_shapes, self.feed_dtypes
        ):
Y
Yu Yang 已提交
451
            converter.append(
452 453 454 455 456 457 458
                DataToLoDTensorConverter(
                    place=self.place,
                    lod_level=lod_level,
                    shape=shape,
                    dtype=dtype,
                )
            )
Y
Yu Yang 已提交
459 460

        for each_sample in iterable:
461
            assert len(each_sample) == len(converter), (
462 463 464
                "The number of fields in data (%d) does not match "
                + "len(feed_list) (%d)"
            ) % (len(each_sample), len(converter))
465
            for each_converter, each_slot in zip(converter, each_sample):
Y
Yu Yang 已提交
466 467
                each_converter.feed(each_slot)
        ret_dict = {}
468
        for each_name, each_converter in zip(self.feed_names, converter):
Y
Yu Yang 已提交
469 470
            ret_dict[each_name] = each_converter.done()
        return ret_dict
Y
yuyang18 已提交
471 472 473 474 475

    def _get_number_of_places_(self, num_places):
        if num_places is not None:
            return int(num_places)
        elif isinstance(self.place, core.CUDAPlace):
C
chengduo 已提交
476
            return len(_cuda_ids())
Y
yuyang18 已提交
477
        else:
C
chengduo 已提交
478
            return _cpu_num()